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