Module: Anydoc::Native Private
- Defined in:
- sig/anydoc.rbs
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Argument coercion and file reading happen in Ruby; these are the raw entry points the extension defines.
Class Method Summary collapse
- .format_from_bytes ⇒ Symbol? private
- .format_from_extension ⇒ Symbol? private
- .to_document ⇒ Document private
- .to_markdown_bytes ⇒ String private
Class Method Details
.format_from_bytes ⇒ Symbol?
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
26 |
# File 'sig/anydoc.rbs', line 26
def self.format_from_bytes: (String data) -> Symbol?
|
.format_from_extension ⇒ Symbol?
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
27 |
# File 'sig/anydoc.rbs', line 27
def self.format_from_extension: (String extension) -> Symbol?
|
.to_document ⇒ Document
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
25 |
# File 'sig/anydoc.rbs', line 25
def self.to_document: (String data, Symbol? format) -> Document
|
.to_markdown_bytes ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
24 |
# File 'sig/anydoc.rbs', line 24
def self.to_markdown_bytes: (String data, Symbol? format) -> String
|