util.Math.pow
Computes the value of x raised to the power y.
Syntax
util.Math.pow(
x FLOAT,
y FLOAT )
RETURNS FLOAT
- x is the value to be raised.
- y is the power operand.
Usage
The function returns NULL
if one of the arguments provided is invalid.
If x is negative, the caller must ensure that y is an integer value.