• Home
Name Date Size #Lines LOC

..--

benches/04-Jul-2025-2,2522,174

examples/04-Jul-2025-7248

patches/04-Jul-2025-2925

src/04-Jul-2025-5,5633,538

tests/04-Jul-2025-5,3275,051

.android-checksum.jsonD04-Jul-20257.9 KiB11

.cargo-checksum.jsonD04-Jul-20257.4 KiB11

Android.bpD04-Jul-20251.2 KiB4945

Cargo.lockD04-Jul-202520 KiB792703

Cargo.tomlD04-Jul-20252.9 KiB152128

LICENSED04-Jul-20252.1 KiB4736

METADATAD04-Jul-2025429 1817

MODULE_LICENSE_UNICODE_3D04-Jul-20250

README.mdD04-Jul-20251.6 KiB2818

cargo_embargo.jsonD04-Jul-2025300 1515

icu4x_bionic_dep.bp.fragmentD04-Jul-202561 55

README.md

1# icu_collections [![crates.io](https://img.shields.io/crates/v/icu_collections)](https://crates.io/crates/icu_collections)
2
3<!-- cargo-rdme start -->
4
5Efficient collections for Unicode data.
6
7This module is published as its own crate ([`icu_collections`](https://docs.rs/icu_collections/latest/icu_collections/))
8and as part of the [`icu`](https://docs.rs/icu/latest/icu/) crate. See the latter for more details on the ICU4X project.
9
10ICU4X `CodePointTrie` provides a read-only view of `CodePointTrie` data that is exported
11from ICU4C. Detailed information about the design of the data structure can be found in the documentation
12for the `CodePointTrie` struct.
13
14ICU4X `CodePointInversionList` provides necessary functionality for highly efficient querying of sets of Unicode characters.
15It is an implementation of the existing [ICU4C UnicodeSet API](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classicu_1_1UnicodeSet.html).
16
17ICU4X `Char16Trie` provides a data structure for a space-efficient and time-efficient lookup of
18sequences of 16-bit units (commonly but not necessarily UTF-16 code units)
19which map to integer values.
20It is an implementation of the existing [ICU4C UCharsTrie](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classicu_1_1UCharsTrie.html)
21/ [ICU4J CharsTrie](https://unicode-org.github.io/icu-docs/apidoc/released/icu4j/com/ibm/icu/util/CharsTrie.html) API.
22
23<!-- cargo-rdme end -->
24
25## More Information
26
27For more information on development, authorship, contributing etc. please visit [`ICU4X home page`](https://github.com/unicode-org/icu4x).
28