icu_properties
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 CodePointSetData
s
use ;
// A binary property as a `CodePointSetData`
assert!; // U+1F383 JACK-O-LANTERN
assert!; // U+6728
// An individual enumerated property value as a `CodePointSetData`
let line_sep_data = general_category
.get_set_for_value;
let line_sep = line_sep_data.as_borrowed;
assert!;
assert!;
Property data as CodePointMapData
s
use ;
assert_eq!; // U+1F383 JACK-O-LANTERN
assert_eq!; // U+6728
More Information
For more information on development, authorship, contributing etc. please visit ICU4X home page
.