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

==

        # Hash.==

(from ruby core)
---
    hash == object -> true or false

---

Returns `true` if all of the following are true:
*   `object` is a Hash object.
*   `hash` and `object` have the same keys (regardless of order).
*   For each key `key`, `hash[key] == object[key]`.


Otherwise, returns `false`.

Equal:
    h1 = {foo: 0, bar: 1, baz: 2}
    h2 = {foo: 0, bar: 1, baz: 2}
    h1 == h2 # => true
    h3 = {baz: 2, bar: 1, foo: 0}
    h1 == h3 # => true



      

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.