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