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")] 7pub use crate::table_bellerophon::*; 8#[cfg(not(feature = "compact"))] 9pub use crate::table_lemire::*; 10#[cfg(not(feature = "compact"))] 11pub use crate::table_small::*; 12