public static float ulp (float f)

Returns the size of an ulp of the argument. An ulp, unit in the last place, of a float value is the positive distance between this floating-point value and the float value next larger in magnitude. Note that for non-NaN x, ulp(-x) == ulp(x).

Special Cases:

Parameters:
f    the floating-point value whose ulp is to be returned

Returns:  the size of an ulp of the argument

Since:  1.5