Method: Axiom::Function::Numeric::Multiplication::Methods#multiply

Defined in:
lib/axiom/function/numeric/multiplication.rb

#multiply(other) ⇒ Multiplication

Return a multiplication function

Examples:

multiplication = attribute.multiply(other)

Parameters:

  • other (Object)

Returns:



50
51
52
# File 'lib/axiom/function/numeric/multiplication.rb', line 50

def multiply(other)
  Multiplication.new(self, other)
end