umya-spreadsheet 3.0.0

umya-spreadsheet is a library written in pure Rust to read and write xlsx file.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[inline]
pub(crate) fn get_currency_code() -> String {
    String::new()
}

#[inline]
pub(crate) fn get_decimal_separator() -> String {
    String::from(".")
}

#[inline]
pub(crate) fn get_thousands_separator() -> String {
    String::from(",")
}