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

rest?

        # StringScanner.rest?

(from ruby core)
---
    rest?()

---

Returns true if and only if there is more data in the string.  See
#eos?. This method is obsolete; use #eos? instead.

    s = StringScanner.new('test string')
    s.eos?              # These two
    s.rest?             # are opposites.



      

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.