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 less than or equal to `other`:

    2.0 <= 3              # => true
    2.0 <= 3.0            # => true
    2.0 <= Rational(3, 1) # => true
    2.0 <= 2.0            # => true
    2.0 <= 1.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.