blob: 7b1367e326a1bd8c51d3d558e7be61fa67d2c400 [file] [log] [blame]
Joel Galenson7cfb4172021-09-28 09:40:25 -07001//! 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::*;