module Axiom::Function::Numeric::Modulo::Methods

Public Instance Methods

modulo(other) click to toggle source

Return a modulo function

@example

modulo = attribute.modulo(other)

@param [Object] other

@return [Modulo]

@api public

# File lib/axiom/function/numeric/modulo.rb, line 41
def modulo(other)
  Modulo.new(self, other)
end