power

open override fun power(base: Double, exponent: UInt): Double(source)
open override fun power(base: Double, exponent: ULong): Double(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: Double, exponent: Int): Double(source)
open override fun power(base: Double, exponent: Long): Double(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.