VocabularymathInputsOutputsWord descriptionComputes the remainder of dividing
x by
y, with the remainder being negative if
x is negative.
• | Modulus of fixnums always yields a fixnum. |
• | Modulus of bignums always yields a bignum. |
• | Modulus of rationals always yields a rational. In this case, the remainder is computed using the formula x - (x mod y) * y. |
See alsoDivision by zero,
remDefinitionMethods