float-dbg 0.3.2

Debug floating point numbers easily
Documentation
1
2
3
4
5
6
7
8
9
10
11
use float_dbg::*;

fn main() {
    println!("f32 example");
    0.032_f32.explain();

    println!();

    println!("f64 example");
    0.032_f64.explain();
}