float_plus

Crates.iofloat_plus
lib.rsfloat_plus
version1.5.5
sourcesrc
created_at2024-08-26 08:22:57.226762
updated_at2024-08-27 11:56:35.540753
descriptionAdditional features for float values
homepage
repository
max_upload_size
id1351947
size51,319
Iron(III) Oxide (amab8901)

documentation

README

FLoat Plus

This library contains traits that extend the capabilities of f32 and f64.

RoundToSigDig::round_to_sf(..)

    let before = 123.123_456_789_f64;
    let after = before.round_to_sf(9);
    assert_eq!(after, 123.123_457_f64);

ApproxEqSf::aeq_sf(..)

    let a = 100.123_456_789_f64;
    let b = 100.123_457;
    assert!(a.aeq_sf(b, 9));

    let a = 100.123_454_789_f64;
    let b = 100.123_457;
    assert!(!a.aeq_sf(b, 9));

NApproxEqSf::nae_sf(..)

    let a = 100.123_456_789_f64;
    let b = 100.123_457;
    assert!(!a.nae_sf(b, 9));

    let a = 100.123_454_789_f64;
    let b = 100.123_457;
    assert!(a.nae_sf(b, 9));

ApproxEq::aeq(..)

    use float_plus::approx_eq::ApproxEq;

    let a = 100.123_456_789_f64;
    let b = 100.123_456_712_f64;

    assert!(a.aeq(b, 7));
    assert!(!a.aeq(b, 8));

NApproxEq::nae(..)

    use float_plus::approx_eq::ApproxNe;
    
    let a = 100.123_456_789_f64;
    let b = 100.123_456_712_f64;

    assert!(!a.nae(b, 7));
    assert!(a.nae(b, 8));

RoundToFraction

    use float_plus::RoundToFraction;

    let before = 100.123_456_789_f64;
    let after = before.round_to_fraction(5);
    assert_eq!(after, 100.123_46);
Commit count: 0

cargo fmt