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

next

        # Enumerator.next

(from ruby core)
---
    e.next   -> object

---

Returns the next object in the enumerator, and move the internal
position forward.  When the position reached at the end, StopIteration
is raised.

### Example

    a = [1,2,3]
    e = a.to_enum
    p e.next   #=> 1
    p e.next   #=> 2
    p e.next   #=> 3
    p e.next   #raises StopIteration

See class-level notes about external iterators.



      

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.