#numbers #pretty #format #itoa

pretty_toa

Fast convert (using itoa/dtoa) numbers to strings with thousands separators

3 releases (1 stable)

Uses old Rust 2015

1.0.0 Nov 11, 2017
0.1.1 Nov 11, 2017
0.1.0 Nov 11, 2017

#312 in Value formatting

Download history 5/week @ 2024-02-16 35/week @ 2024-02-23 31/week @ 2024-03-01 14/week @ 2024-03-08 30/week @ 2024-03-15 93/week @ 2024-03-22

171 downloads per month

MIT license

6KB
115 lines

pretty_toa

Rust crate for converting numbers (integers and floats) to strings with thousands separators.

It is very fast because it uses itoa/dtoa and stack allocated strings.

Usage Example

extern crate pretty_toa;
use pretty_toa::ThousandsSep;

fn main() {
    let num = 123_4567;
    println!("{} => {}", num, num.thousands_sep());

    let num  = 123_4567.1234567;
    println!("{} => {}", num, num.thousands_sep());
}

lib.rs:

Fast convert numbers to strings with thousands separators.

It is very fast because it uses itoa/dtoa and stack allocated strings.

Example

extern crate pretty_toa;
use pretty_toa::ThousandsSep;

fn main() {
    let num = 123_4567;
    println!("{} => {}", num, num.thousands_sep());

    let num  = 123_4567.1234567;
    println!("{} => {}", num, num.thousands_sep());
}

Dependencies

~300KB