Module: Axiom::Function::Numeric::Division::Methods

Extended by:
Aliasable
Defined in:
lib/axiom/function/numeric/division.rb

Instance Method Summary collapse

Methods included from Aliasable

inheritable_alias

Instance Method Details

#divide(other) ⇒ Division

Return a division function

Examples:

division = attribute.divide(other)

Parameters:

  • other (Object)

Returns:



75
76
77
# File 'lib/axiom/function/numeric/division.rb', line 75

def divide(other)
  Division.new(self, other)
end