tifloats/
lib.rs

1mod float;
2mod mantissa;
3
4pub use float::Float;
5
6pub mod error;
7pub use error::FloatError;