11 releases (7 stable)

new 1.4.1 May 23, 2024
1.4.0 Nov 16, 2023
1.3.2 Oct 3, 2023
1.2.0 Apr 14, 2023
0.4.0 Nov 2, 2021

#36 in Internationalization (i18n)

Download history 9980/week @ 2024-02-01 10020/week @ 2024-02-08 10233/week @ 2024-02-15 11375/week @ 2024-02-22 10070/week @ 2024-02-29 11615/week @ 2024-03-07 12199/week @ 2024-03-14 10658/week @ 2024-03-21 9863/week @ 2024-03-28 10705/week @ 2024-04-04 12209/week @ 2024-04-11 12661/week @ 2024-04-18 10449/week @ 2024-04-25 11529/week @ 2024-05-02 11159/week @ 2024-05-09 9555/week @ 2024-05-16

44,583 downloads per month
Used in 102 crates (23 directly)

Custom license

1.5MB
26K SLoC

icu_properties crates.io

Definitions of Unicode Properties and APIs for retrieving property data in an appropriate data structure.

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

APIs that return a CodePointSetData exist for binary properties and certain enumerated properties. See the sets module for more details.

APIs that return a CodePointMapData exist for certain enumerated properties. See the maps module for more details.

Examples

Property data as CodePointSetDatas

use icu::properties::{maps, sets, GeneralCategory};

// A binary property as a `CodePointSetData`

assert!(sets::emoji().contains('🎃')); // U+1F383 JACK-O-LANTERN
assert!(!sets::emoji().contains('')); // U+6728

// An individual enumerated property value as a `CodePointSetData`

let line_sep_data = maps::general_category()
    .get_set_for_value(GeneralCategory::LineSeparator);
let line_sep = line_sep_data.as_borrowed();

assert!(line_sep.contains32(0x2028));
assert!(!line_sep.contains32(0x2029));

Property data as CodePointMapDatas

use icu::properties::{maps, Script};

assert_eq!(maps::script().get('🎃'), Script::Common); // U+1F383 JACK-O-LANTERN
assert_eq!(maps::script().get(''), Script::Han); // U+6728

More Information

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

Dependencies

~1–1.6MB
~31K SLoC