module Axiom::Function::Numeric::Exponentiation::Methods

Public Instance Methods

exponent(other) click to toggle source

Return an exponential function

@example

exponentiation = attribute.exponent(other)

@param [Object] other

@return [Exponentiation]

@api public

# File lib/axiom/function/numeric/exponentiation.rb, line 55
def exponent(other)
  Exponentiation.new(self, other)
end