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

==

        # Rational.==

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

---

Returns `true` if `rat` equals `object` numerically.

    Rational(2, 3)  == Rational(2, 3)   #=> true
    Rational(5)     == 5                #=> true
    Rational(0)     == 0.0              #=> true
    Rational('1/3') == 0.33             #=> false
    Rational('1/2') == '1/2'            #=> 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.