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

==

        # String.==

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

---

Returns `true` if `object` has the same length and content; as `self`;
`false` otherwise:

    s = 'foo'
    s == 'foo' # => true
    s == 'food' # => false
    s == 'FOO' # => false

Returns `false` if the two strings' encodings are not compatible:
    "\u{e4 f6 fc}".encode("ISO-8859-1") == ("\u{c4 d6 dc}") # => false

If `object` is not an instance of String but responds to `to_str`, then
the two strings are compared using `object.==`.



      

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.