< prev index next >

src/java.base/share/classes/java/lang/StrictMath.java

Print this page

        

*** 305,315 **** * * @param a a value. * @return the cube root of {@code a}. * @since 1.5 */ ! public static native double cbrt(double a); /** * Computes the remainder operation on two arguments as prescribed * by the IEEE 754 standard. * The remainder value is mathematically equal to --- 305,317 ---- * * @param a a value. * @return the cube root of {@code a}. * @since 1.5 */ ! public static double cbrt(double a) { ! return FdLibm.Cbrt.compute(a); ! } /** * Computes the remainder operation on two arguments as prescribed * by the IEEE 754 standard. * The remainder value is mathematically equal to
< prev index next >