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

get_string

        # IO::Buffer.get_string

(from ruby core)
### Implementation from Buffer
---
    get_string([offset, [length, [encoding]]]) -> string

---

Read a chunk or all of the buffer into a string, in the specified
`encoding`. If no encoding is provided `Encoding::BINARY` is used.

    buffer = IO::Buffer.for('test')
    buffer.get_string
    # => "test"
    buffer.get_string(2)
    # => "st"
    buffer.get_string(2, 1)
    # => "s"



      

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.