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

>

        # Float.>

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

---

Returns `true` if `self` is numerically greater than `other`:

    2.0 > 1              # => true
    2.0 > 1.0            # => true
    2.0 > Rational(1, 2) # => true
    2.0 > 2.0            # => false

`Float::NAN > Float::NAN` returns an implementation-dependent value.



      

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.