This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

Encoding::Converter

        # Encoding::Converter < Object

(from ruby core)
---
Encoding conversion class.
---
# Constants:

AFTER_OUTPUT
:   AFTER_OUTPUT

    Stop converting after some output is complete but before all of the
    input was consumed.  See primitive_convert for an example.
CRLF_NEWLINE_DECORATOR
:   CRLF_NEWLINE_DECORATOR

    Decorator for converting LF to CRLF
CR_NEWLINE_DECORATOR
:   CR_NEWLINE_DECORATOR

    Decorator for converting LF to CR
INVALID_MASK
:   INVALID_MASK

    Mask for invalid byte sequences
INVALID_REPLACE
:   INVALID_REPLACE

    Replace invalid byte sequences
PARTIAL_INPUT
:   PARTIAL_INPUT

    Indicates the source may be part of a larger string.  See
    primitive_convert for an example.
UNDEF_HEX_CHARREF
:   UNDEF_HEX_CHARREF

    Replace byte sequences that are undefined in the destination
    encoding with an XML hexadecimal character reference.  This is valid
    for XML conversion.
UNDEF_MASK
:   UNDEF_MASK

    Mask for a valid character in the source encoding but no related
    character(s) in destination encoding.
UNDEF_REPLACE
:   UNDEF_REPLACE

    Replace byte sequences that are undefined in the destination
    encoding.
UNIVERSAL_NEWLINE_DECORATOR
:   UNIVERSAL_NEWLINE_DECORATOR

    Decorator for converting CRLF and CR to LF
XML_ATTR_CONTENT_DECORATOR
:   XML_ATTR_CONTENT_DECORATOR

    Escape as XML AttValue
XML_ATTR_QUOTE_DECORATOR
:   XML_ATTR_QUOTE_DECORATOR

    Escape as XML AttValue
XML_TEXT_DECORATOR
:   XML_TEXT_DECORATOR

    Escape as XML CharData


# Class methods:

    asciicompat_encoding
    new
    search_convpath

# Instance methods:

    ==
    convert
    convpath
    destination_encoding
    finish
    insert_output
    inspect
    last_error
    primitive_convert
    primitive_errinfo
    putback
    replacement
    replacement=
    source_encoding


      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.