rustc/vendor/icu_list-1.5.0
2024-09-09 14:07:22 +02:00
..
examples New upstream version 1.81.0+dfsg1 2024-09-09 14:07:22 +02:00
src New upstream version 1.81.0+dfsg1 2024-09-09 14:07:22 +02:00
.cargo-checksum.json New upstream version 1.81.0+dfsg1 2024-09-09 14:07:22 +02:00
Cargo.lock New upstream version 1.81.0+dfsg1 2024-09-09 14:07:22 +02:00
Cargo.toml New upstream version 1.81.0+dfsg1 2024-09-09 14:07:22 +02:00
LICENSE New upstream version 1.81.0+dfsg1 2024-09-09 14:07:22 +02:00
README.md New upstream version 1.81.0+dfsg1 2024-09-09 14:07:22 +02:00

icu_list crates.io

Formatting lists in a locale-sensitive way.

This module is published as its own crate (icu_list) and as part of the icu crate. See the latter for more details on the ICU4X project.

Examples

Formatting and lists in Spanish

let list_formatter = ListFormatter::try_new_and_with_length(
    &locale!("es").into(),
    ListLength::Wide,
)
.expect("locale should be present");

assert_writeable_eq!(
    list_formatter.format(["España", "Suiza"].iter()),
    "España y Suiza",
);

// The Spanish 'y' sometimes becomes an 'e':
assert_writeable_eq!(
    list_formatter.format(["España", "Suiza", "Italia"].iter()),
    "España, Suiza e Italia",
);

Formatting or lists in Thai

let list_formatter = ListFormatter::try_new_or_with_length(
    &locale!("th").into(),
    ListLength::Short,
)
.expect("locale should be present");

// We can use any Writeables as inputs
assert_writeable_eq!(list_formatter.format(1..=3), "1, 2 หรือ 3",);

Formatting unit lists in English

let list_formatter = ListFormatter::try_new_unit_with_length(
    &locale!("en").into(),
    ListLength::Wide,
)
.expect("locale should be present");

assert_writeable_eq!(
    list_formatter.format(["1ft", "2in"].iter()),
    "1ft, 2in",
);

Note: this last example is not fully internationalized. See icu4x/2192 for full unit handling.

More Information

For more information on development, authorship, contributing etc. please visit ICU4X home page.