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

quo

        # Float.quo

(from ruby core)
---
    quo(other) -> numeric

---

Returns the quotient from dividing `self` by `other`:

    f = 3.14
    f.quo(2)              # => 1.57
    f.quo(-2)             # => -1.57
    f.quo(Rational(2, 1)) # => 1.57
    f.quo(Complex(2, 0))  # => (1.57+0.0i)

Float#fdiv is an alias for Float#quo.



      

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.