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 |
#323 in Value formatting
242 downloads per month
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
~295KB