7 releases (1 stable)

1.0.0 Dec 11, 2022
0.1.5 Apr 13, 2020

#78 in Algorithms

Download history 38439/week @ 2023-12-13 23600/week @ 2023-12-20 18294/week @ 2023-12-27 34206/week @ 2024-01-03 36002/week @ 2024-01-10 44721/week @ 2024-01-17 38460/week @ 2024-01-24 38619/week @ 2024-01-31 50704/week @ 2024-02-07 56244/week @ 2024-02-14 59476/week @ 2024-02-21 54690/week @ 2024-02-28 53484/week @ 2024-03-06 54597/week @ 2024-03-13 44350/week @ 2024-03-20 28728/week @ 2024-03-27

191,723 downloads per month
Used in 337 crates (14 directly)

MIT license

17KB
225 lines

float-next-after

codecov Documentation License: MIT Crates.io Crates.io

A native Rust next after float function, which is provided as a trait for f32 and f64 types. It steps to the next representable floating point, even if it is subnormal. If a subnormal is undesired, users should handle that eventuality themselves. See CHANGES.md for the versioned changelog.

In specific edge cases the following decisions have been made:

  • self == y -> return y
  • self >= positive infinity -> return positive infinity
  • self <= negative infinity -> return negative infinity
  • self or y == NaN -> return NaN
  • self = -0.0 and y = 0.0 -> return positive 0.0
  • self == -0.0 and y == positive infinity -> 5e-324

Please see the unit tests for the actual behavior in various other exceptional cases.

This code uses the ToBits and FromBits functions from f32 and f64. Those both simply wrap unsafe { mem::transmute(self) } / unsafe { mem::transmute(v) } to convert a f32/f64 to u32/u64. The docs for those functions, however, claim that they are safe and that "the safety issues with sNaN were overblown!"

PR's and other helpful input are welcome.

Usage

use float_next_after::NextAfter;

// Large numbers
let big_num = 16237485966.00000437586943_f64;
let next = big_num.next_after(std::f64::INFINITY);
assert_eq!(next, 16237485966.000006_f64);

// Expected handling of 1.0
let one = 1_f64;
let next = one.next_after(std::f64::INFINITY);
assert_eq!(next, 1_f64 + std::f64::EPSILON);

// Tiny (negative) numbers
let zero = 0_f32;
let next = zero.next_after(std::f32::NEG_INFINITY);
assert_eq!(next, -0.000000000000000000000000000000000000000000001_f32);

// Equal source/dest (even -0 == 0)
let zero = 0_f64;
let next = zero.next_after(-0_f64);
assert_eq!(next, -0_f64);

No runtime deps