lexical_write_float/
table.rs

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

#![doc(hidden)]

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