Calculates the power of this integer to the given exponent. This is a shorthand for this.toDouble().pow(exponent.toDouble()).toInt().
this.toDouble().pow(exponent.toDouble()).toInt()
the exponent to raise this integer to.