1 | //! Pre-computed tables for parsing float strings. |
---|---|
2 | |
3 | #![doc(hidden)] |
4 | |
5 | // Re-export all the feature-specific files. |
6 | #[cfg(feature = "compact")] |
7 | pub use crate::table_bellerophon::*; |
8 | #[cfg(not(feature = "compact"))] |
9 | pub use crate::table_lemire::*; |
10 | #[cfg(not(feature = "compact"))] |
11 | pub use crate::table_small::*; |
12 |