1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Integer-to-string formatting routines.

// Hide internal implementation details.
#[cfg(feature = "table")]
mod decimal;

#[cfg(all(feature = "table", feature = "radix"))]
mod generic;

#[cfg(not(feature = "table"))]
mod naive;

mod api;

#[cfg(feature = "radix")]
pub(crate) use self::api::itoa_positive;