Module assert_f32_ge

Module assert_f32_ge 

Source
Expand description

Assert a floating point 32-bit number is greater than or equal to another within f32::EPSILON.

Pseudocode:
a ≥ b

§Example

use assertables::*;

let a: f32 = 1.0 / 3.0;
let b: f32 = 0.3333331;
assert_f32_ge!(a, b);

§Module macros