Numeric

class Numeric

Parent:
Object
Included modules:
Comparable

The top-level number class.

Public Instance Methods

modulo(numeric) → real Show source
x.modulo(y) means x-y*(x/y).floor

Equivalent to num.divmod(numeric)[1].

See #divmod.