module NumericInverse

Provides refinements of a method +Numeric#inverse+ to get a (usual/modular) multiplicative inverse of a number readily.

Constants

VERSION

Public Instance Methods

inv()
Alias for: inverse
inverse() click to toggle source
# File lib/numeric_inverse.rb, line 9
def inverse
        1.quo(self)
end
Also aliased as: inv, inv