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

each_char

        # String.each_char

(from ruby core)
---
    str.each_char {|cstr| block }    -> str
    str.each_char                    -> an_enumerator

---

Passes each character in *str* to the given block, or returns an
enumerator if no block is given.

    "hello".each_char {|c| print c, ' ' }

*produces:*

    h e l l o



      

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.