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

quo

        # BigDecimal.quo

(from ruby core)
---
    quo(value)  -> bigdecimal
    quo(value, digits)  -> bigdecimal

---

Divide by the specified value.

digits
:   If specified and less than the number of significant digits of the
    result, the result is rounded to the given number of digits,
    according to the rounding mode indicated by BigDecimal.mode.

    If digits is 0 or omitted, the result is the same as for the /
    operator.


See BigDecimal#/. See BigDecimal#div.



      

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.