lexical_write_integer/
table.rs

1//! Pre-computed tables for writing integral strings.
2
3#![cfg(not(feature = "compact"))]
4#![doc(hidden)]
5
6// Re-export all the feature-specific files.
7#[cfg(feature = "power-of-two")]
8pub use crate::table_binary::*;
9pub use crate::table_decimal::*;
10#[cfg(feature = "radix")]
11pub use crate::table_radix::*;