operator ^ method
Raises a result to a power.
Implementation
operator ^(Result other) {
return Result(
clean: approximate().pow(other.approximate().round().toInt()));
}
Raises a result to a power.
operator ^(Result other) {
return Result(
clean: approximate().pow(other.approximate().round().toInt()));
}