public static double cbrt (double a)

Returns the cube root of a double value. For positive finite x, cbrt(-x) == -cbrt(x); that is, the cube root of a negative value is the negative of the cube root of that value's magnitude. Special cases:

Parameters:
a    a value.

Returns:  the cube root of a.

Since:  1.5