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

eql?

        # String.eql?

(from ruby core)
---
    eql?(object) -> true or false

---

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

    s = 'foo'
    s.eql?('foo') # => true
    s.eql?('food') # => false
    s.eql?('FOO') # => false

Returns `false` if the two strings' encodings are not compatible:

    "\u{e4 f6 fc}".encode("ISO-8859-1").eql?("\u{c4 d6 dc}") # => 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.