lexical_parse_float/
table_small.rs

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

#![cfg(not(feature = "compact"))]
#![doc(hidden)]

// Re-export all the feature-specific files.
#[cfg(feature = "power-of-two")]
pub use crate::table_binary::*;
pub use crate::table_decimal::*;
#[cfg(feature = "radix")]
pub use crate::table_radix::*;