Crates.io | icu_codepointtrie |
lib.rs | icu_codepointtrie |
version | 0.4.0 |
source | src |
created_at | 2021-11-01 23:29:03.223301 |
updated_at | 2022-05-17 16:34:13.976392 |
description | API for an efficient trie of data for Unicode code points |
homepage | |
repository | https://github.com/unicode-org/icu4x |
max_upload_size | |
id | 475488 |
size | 369,705 |
icu_codepointtrie
is a utility crate of the ICU4X
project.
This component provides a data structure for an time-efficient lookup of values associated to code points.
It is an implementation of the existing ICU4C UCPTrie / ICU4J CodePointTrie API.
ICU4X CodePointTrie
is designed to provide a read-only view of CodePointTrie data that is exported
from ICU4C. Detailed information about the design of the data structure can be found in the documentation
for the CodePointTrie
struct.
CodePointTrie
use icu_codepointtrie::planes;
let trie = planes::get_planes_trie();
assert_eq!(0, trie.get(0x41)); // 'A' as u32
assert_eq!(0, trie.get(0x13E0)); // 'Ꮰ' as u32
assert_eq!(1, trie.get(0x10044)); // '𐁄' as u32
For more information on development, authorship, contributing etc. please visit ICU4X home page
.