power

open override fun power(base: Float, exponent: UInt): Float(source)
open override fun power(base: Float, exponent: ULong): Float(source)

Raises base number in the power of exponent.

The result is equal to product of exponent number of base copies.


open override fun power(base: Float, exponent: Int): Float(source)
open override fun power(base: Float, exponent: Long): Float(source)

Raises base number in the power of exponent.

The result is equal to product of exponent number of base copies if the exponent is non-negative and reciprocal of product of -exponent number of base copies otherwise.