lexical_parse_float/
table.rs

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