cfunction
src/core/math.c on line 308 , column 1
(math/next x y )
Returns the next representable floating point value after x in the
direction of y.
(one? (math/next 1 math/inf )) # => false
# Note: the numbers may appear the same, but this is only due to printing truncation.
1 # => 1
(math/next 1 math/inf ) # => 1
( 1 1 ) # => false
( 1 (math/next 1 math/inf )) # => true