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

divmod

        # Integer.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.divmod(4)              # => [2, 3]
    11.divmod(-4)             # => [-3, -1]
    -11.divmod(4)             # => [-3, 1]
    -11.divmod(-4)            # => [2, -3]

    12.divmod(4)              # => [3, 0]
    12.divmod(-4)             # => [-3, 0]
    -12.divmod(4)             # => [-3, 0]
    -12.divmod(-4)            # => [3, 0]

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



      

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.