pow

open infix fun Number.pow(exponent: Int): Number(source)
open infix fun Number.pow(exponent: Long): Number(source)

Raises this number in the power of exponent.

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