lexical_parse_float/
table.rs

1
2
3
4
5
6
7
8
//! Pre-computed tables for parsing float strings.

#![doc(hidden)]

// Re-export all the feature-specific files.
pub use crate::table_large::*;
#[cfg(not(feature = "compact"))]
pub use crate::table_small::*;