lexical-write-float 0.8.0

Efficient formatting of floats to strings.
Documentation
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::*;