humfmt 0.1.1

Ergonomic human-readable number formatting for Rust
Documentation
1
2
3
4
5
6
#[derive(Copy, Clone, Debug)]
pub enum NumericValue {
    Int(i128),
    UInt(u128),
    Float(f64),
}