[go: up one dir, main page]

separator 0.4.1

Formats numbers into strings with thousands separators for readability.
Documentation
1
2
3
4
5
6
7
8
use Separatable;

impl Separatable for usize {
    fn separated_string(&self) -> String {
        let string = format!("{}", self);
        separated_int!(string)
    }
}