Crate pretty_num

Source
Expand description

This crate formats numbers in a compact form similar to that used on social media sites:

use pretty_num::PrettyNumber;
 
assert_eq!(23_520_123.pretty_format(), String::from("23.5M"));

Traitsยง

PrettyNumber
A number that can be formatted prettily.