lexical_parse_float/
table_large.rs

1
2
3
4
5
6
7
8
9
10
11
//! Pre-computed large value tables for writing float strings.

#![doc(hidden)]

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