lexical_parse_float/
table_large.rs

1//! Pre-computed large value tables for writing float strings.
2
3#![doc(hidden)]
4
5// Re-export all the feature-specific files.
6#[cfg(feature = "compact")]
7pub use crate::table_bellerophon_decimal::*;
8#[cfg(feature = "radix")]
9pub use crate::table_bellerophon_radix::*;
10#[cfg(not(feature = "compact"))]
11pub use crate::table_lemire::*;