Expand description
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.
APIs that return a CodePointMapData exist for certain enumerated properties.
ยงExamples
ยงProperty data as CodePointSetDatas
use icu::properties::{CodePointSetData, CodePointMapData};
use icu::properties::props::{GeneralCategory, Emoji};
// A binary property as a `CodePointSetData`
assert!(CodePointSetData::new::<Emoji>().contains('๐')); // U+1F383 JACK-O-LANTERN
assert!(!CodePointSetData::new::<Emoji>().contains('ๆจ')); // U+6728
// An individual enumerated property value as a `CodePointSetData`
let line_sep_data = CodePointMapData::<GeneralCategory>::new()
.get_set_for_value(GeneralCategory::LineSeparator);
let line_sep = line_sep_data.as_borrowed();
assert!(line_sep.contains('\u{2028}'));
assert!(!line_sep.contains('\u{2029}'));ยงProperty data as CodePointMapDatas
use icu::properties::CodePointMapData;
use icu::properties::props::Script;
assert_eq!(CodePointMapData::<Script>::new().get('๐'), Script::Common); // U+1F383 JACK-O-LANTERN
assert_eq!(CodePointMapData::<Script>::new().get('ๆจ'), Script::Han); // U+6728Modulesยง
- bidi ๐
- code_
point_ ๐map - code_
point_ ๐set - emoji ๐
- names ๐
- private ๐
- props
- This module defines all available properties.
- provider
- ๐ง [Unstable] Data provider struct definitions for this ICU4X component.
- runtime ๐
- ๐ง [Experimental] This module is experimental and currently crate-private. Let us know if you have a use case for this!
- script
- Data and APIs for supporting Script_Extensions property values in an efficient structure.
- trievalue ๐
Structsยง
- Code
Point MapData - A wrapper around code point map data.
- Code
Point MapData Borrowed - A borrowed wrapper around code point set data, returned by
[
CodePointSetData::as_borrowed()]. More efficient to query. - Code
Point SetData - A set of Unicode code points. Access its data via the borrowed version,
CodePointSetDataBorrowed. - Code
Point SetData Borrowed - A borrowed wrapper around code point set data, returned by
CodePointSetData::as_borrowed(). More efficient to query. - Emoji
SetData - A wrapper around
UnicodeSetdata (characters and strings) - Emoji
SetData Borrowed - A borrowed wrapper around code point set data, returned by
EmojiSetData::as_borrowed(). More efficient to query. - Property
Names Long - A struct capable of looking up a property name from a value
Access its data by calling
Self::as_borrowed()and using the methods onPropertyNamesLongBorrowed. - Property
Names Long Borrowed - A borrowed wrapper around property value name-to-enum data, returned by
PropertyNamesLong::as_borrowed(). More efficient to query. - Property
Names Short - A struct capable of looking up a property name from a value
Access its data by calling
Self::as_borrowed()and using the methods onPropertyNamesShortBorrowed. - Property
Names Short Borrowed - A borrowed wrapper around property value name-to-enum data, returned by
PropertyNamesShort::as_borrowed(). More efficient to query. - Property
Parser - A struct capable of looking up a property value from a string name.
Access its data by calling
Self::as_borrowed()and using the methods onPropertyParserBorrowed. - Property
Parser Borrowed - A borrowed wrapper around property value name-to-enum data, returned by
PropertyParser::as_borrowed(). More efficient to query.