num-format 0.1.2

A Rust crate for producing string-representations of numbers, formatted according to international standards
Documentation
1
2
3
4
5
6
7
8
9
mod separator;
mod write_bytes;
#[cfg(feature = "num-bigint")]
mod write_str_to_buffer;

pub(crate) use self::separator::Separator;
pub(crate) use self::write_bytes::{write_one_byte, write_two_bytes};
#[cfg(feature = "num-bigint")]
pub(crate) use self::write_str_to_buffer::write_str_to_buffer;