1//! Implementation of the `FEEL` number type. 2 3#[macro_use] 4extern crate dmntk_macros; 5 6mod dfp_number; 7mod errors; 8 9pub use dfp_number::FeelNumber;