public static native double expm1 (double x)

Returns ex -1. Note that for values of x near 0, the exact sum of expm1(x) + 1 is much closer to the true result of ex than exp(x).

Special cases:

Parameters:
x    the exponent to raise e to in the computation of e x -1.

Returns:  the value e x - 1.

Since:  1.5