1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Integer-to-string formatting routines. // Hide internal implementation details. #[cfg(feature = "table")] mod base10; #[cfg(all(feature = "table", feature = "radix"))] mod generic; #[cfg(not(feature = "table"))] mod naive; mod api; // Re-export everything from the API. pub use self::api::*;