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

each

        # Enumerator::Chain.each

(from ruby core)
### Implementation from Chain
---
    obj.each(*args) { |...| ... } -> obj
    obj.each(*args) -> enumerator

---

Iterates over the elements of the first enumerable by calling the "each"
method on it with the given arguments, then proceeds to the following
enumerables in sequence until all of the enumerables are exhausted.

If no block is given, returns an enumerator.



      

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.