positiveEpsilonOf function

double positiveEpsilonOf(
  1. double value
)

Evaluates the minimum distance to the next distinguishable number near the argument value.

Evaluates the positive epsilon. See also epsilonOf.

Implementation

double positiveEpsilonOf(double value) => 2 * epsilonOf(value);