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

encode!

        # String.encode!

(from ruby core)
---
    str.encode!(encoding, **options)   -> str
    str.encode!(dst_encoding, src_encoding, **options)   -> str

---

The first form transcodes the contents of *str* from str.encoding to
`encoding`. The second form transcodes the contents of *str* from
src_encoding to dst_encoding. The `options` keyword arguments give
details for conversion. See String#encode for details. Returns the
string even if no changes were made.



      

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.