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

==

        # Struct.==

(from ruby core)
---
    self == other -> true or false

---

Returns  `true` if and only if the following are true; otherwise returns
`false`:

*   `other.class == self.class`.
*   For each member name `name`, `other.name == self.name`.


Examples:

    Customer = Struct.new(:name, :address, :zip)
    joe    = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
    joe_jr = Customer.new("Joe Smith", "123 Maple, Anytown NC", 12345)
    joe_jr == joe # => true
    joe_jr[:name] = 'Joe Smith, Jr.'
    # => "Joe Smith, Jr."
    joe_jr == joe # => false



      

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.