Bug 1888590 - Mark some subtests on trusted-types-event-handlers.html as failing...
[gecko.git] / third_party / rust / icu_collections / README.md
blobe3052deabb27e2cc84a5bc6aa52e675acaff3215
1 # icu_collections [![crates.io](https://img.shields.io/crates/v/icu_collections)](https://crates.io/crates/icu_collections)
3 <!-- cargo-rdme start -->
5 Efficient collections for Unicode data.
7 This module is published as its own crate ([`icu_collections`](https://docs.rs/icu_collections/latest/icu_collections/))
8 and as part of the [`icu`](https://docs.rs/icu/latest/icu/) crate. See the latter for more details on the ICU4X project.
10 ICU4X `CodePointTrie` provides a read-only view of CodePointTrie data that is exported
11 from ICU4C. Detailed information about the design of the data structure can be found in the documentation
12 for the `CodePointTrie` struct.
14 ICU4X `CodePointInversionList` provides necessary functionality for highly efficient querying of sets of Unicode characters.
15 It is an implementation of the existing [ICU4C UnicodeSet API](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classicu_1_1UnicodeSet.html).
17 ICU4X `Char16Trie` provides a data structure for a space-efficient and time-efficient lookup of
18 sequences of 16-bit units (commonly but not necessarily UTF-16 code units)
19 which map to integer values.
20 It 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.
23 <!-- cargo-rdme end -->
25 ## More Information
27 For more information on development, authorship, contributing etc. please visit [`ICU4X home page`](https://github.com/unicode-org/icu4x).