| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| benches/ | 04-Jul-2025 | - | 2,252 | 2,174 | ||
| examples/ | 04-Jul-2025 | - | 72 | 48 | ||
| patches/ | 04-Jul-2025 | - | 29 | 25 | ||
| src/ | 04-Jul-2025 | - | 5,563 | 3,538 | ||
| tests/ | 04-Jul-2025 | - | 5,327 | 5,051 | ||
| .android-checksum.json | D | 04-Jul-2025 | 7.9 KiB | 1 | 1 | |
| .cargo-checksum.json | D | 04-Jul-2025 | 7.4 KiB | 1 | 1 | |
| Android.bp | D | 04-Jul-2025 | 1.2 KiB | 49 | 45 | |
| Cargo.lock | D | 04-Jul-2025 | 20 KiB | 792 | 703 | |
| Cargo.toml | D | 04-Jul-2025 | 2.9 KiB | 152 | 128 | |
| LICENSE | D | 04-Jul-2025 | 2.1 KiB | 47 | 36 | |
| METADATA | D | 04-Jul-2025 | 429 | 18 | 17 | |
| MODULE_LICENSE_UNICODE_3 | D | 04-Jul-2025 | 0 | |||
| README.md | D | 04-Jul-2025 | 1.6 KiB | 28 | 18 | |
| cargo_embargo.json | D | 04-Jul-2025 | 300 | 15 | 15 | |
| icu4x_bionic_dep.bp.fragment | D | 04-Jul-2025 | 61 | 5 | 5 |
README.md
1# 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