num-format 0.4.4

A Rust crate for producing string-representations of numbers, formatted according to international standards
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg(all(feature = "with-system-locale", windows))]

use num_format::SystemLocale;

#[test]
fn test_windows() {
    let names = SystemLocale::available_names().unwrap();
    assert!(!names.is_empty());
    for name in &names {
        let _ = SystemLocale::from_name(name).unwrap();
    }
}