nextUp

fun nextUp(f: Float): Float

Returns the floating-point value adjacent to f in the direction of positive infinity. This method is semantically equivalent to nextAfter(f, Float.POSITIVE_INFINITY); however, a nextUp implementation may run faster than its equivalent nextAfter call.

Special Cases:

  • If the argument is NaN, the result is NaN.

  • If the argument is positive infinity, the result is positive infinity.

  • If the argument is zero, the result is Float.MIN_VALUE

Return

The adjacent floating-point value closer to positive infinity.

Since

1.6

Parameters

f

starting floating-point value