power

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