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

convpath

        # Encoding::Converter.convpath

(from ruby core)
### Implementation from Converter
---
    ec.convpath        -> ary

---

Returns the conversion path of ec.

The result is an array of conversions.

    ec = Encoding::Converter.new("ISO-8859-1", "EUC-JP", crlf_newline: true)
    p ec.convpath
    #=> [[#<Encoding:ISO-8859-1>, #<Encoding:UTF-8>],
    #    [#<Encoding:UTF-8>, #<Encoding:EUC-JP>],
    #    "crlf_newline"]

Each element of the array is a pair of encodings or a string. A pair
means an encoding conversion. A string means a decorator.

In the above example, [#<Encoding:ISO-8859-1>, #<Encoding:UTF-8>] means
a converter from ISO-8859-1 to UTF-8. "crlf_newline" means newline
converter from LF to CRLF.



      

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.