module Axiom::Function::Numeric::Division::Methods
Public Instance Methods
divide(other)
click to toggle source
Return a division function
@example
division = attribute.divide(other)
@param [Object] other
@return [Division]
@api public
# File lib/axiom/function/numeric/division.rb, line 75 def divide(other) Division.new(self, other) end