Returns the closest double approximation of the result of raising x to the power of y. Special cases: pow((anything), +0.0) = 1.0 pow((anything), -0.0) = 1.0 pow(x, 1.0) = x pow((anything), NaN) = NaN {@
(double x, double y)
| 633 | * @return {@code x} to the power of {@code y}. |
| 634 | */ |
| 635 | public static native double pow(double x, double y); |
| 636 | |
| 637 | /** |
| 638 | * Returns the double conversion of the result of rounding the argument to |