1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Fast lexical string-to-integer conversion routines. // Hide implementation details. #[macro_use] mod shared; mod api; mod exponent; mod generic; mod mantissa; // Re-exports pub(crate) use self::mantissa::*; pub(crate) use self::exponent::*;