pow
Raises this value to the power x.
Special cases:
b.pow(0.0)is1.0b.pow(1.0) == bb.pow(NaN)isNaNNaN.pow(x)isNaNforx != 0.0b.pow(Inf)isNaNforabs(b) == 1.0b.pow(x)isNaNforb < 0andxis finite and not an integer
Since Kotlin
1.2
Raises this value to the power x.
Special cases:
b.pow(0.0) is 1.0
b.pow(1.0) == b
b.pow(NaN) is NaN
NaN.pow(x) is NaN for x != 0.0
b.pow(Inf) is NaN for abs(b) == 1.0
b.pow(x) is NaN for b < 0 and x is finite and not an integer