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

get_byte

        # StringScanner.get_byte

(from ruby core)
---
    get_byte()

---

Scans one byte and returns it. This method is not multibyte character
sensitive. See also: #getch.

    s = StringScanner.new('ab')
    s.get_byte         # => "a"
    s.get_byte         # => "b"
    s.get_byte         # => nil

    s = StringScanner.new("\244\242".force_encoding("euc-jp"))
    s.get_byte         # => "\xA4"
    s.get_byte         # => "\xA2"
    s.get_byte         # => nil



      

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.