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