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

divmod

        # Float.divmod

(from ruby core)
---
    divmod(other) -> array

---

Returns a 2-element array `[q, r]`, where

    q = (self/other).floor      # Quotient
    r = self % other            # Remainder

Examples:

    11.0.divmod(4)              # => [2, 3.0]
    11.0.divmod(-4)             # => [-3, -1.0]
    -11.0.divmod(4)             # => [-3, 1.0]
    -11.0.divmod(-4)            # => [2, -3.0]

    12.0.divmod(4)              # => [3, 0.0]
    12.0.divmod(-4)             # => [-3, 0.0]
    -12.0.divmod(4)             # => [-3, -0.0]
    -12.0.divmod(-4)            # => [3, -0.0]

    13.0.divmod(4.0)            # => [3, 1.0]
    13.0.divmod(Rational(4, 1)) # => [3, 1.0]



      

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.