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