Module icu_collections::codepointtrie::cptrie
source · Macros§
Structs§
- Represents a range of consecutive code points sharing the same value in a code point map. The start and end of the interval is represented as a
RangeInclusive<u32>
, and the value is represented asT
. - A custom
Iterator
type specifically for a code point trie that returnsCodePointMapRange
s. - This struct represents a de-serialized
CodePointTrie
that was exported from ICU binary data. - This struct contains the fixed-length header fields of a
CodePointTrie
.
Enums§
- The type of trie represents whether the trie has an optimization that would make it smaller or faster.
Traits§
- A trait representing the values stored in the data array of a
CodePointTrie
. This trait is used as a type parameter in constructing aCodePointTrie
.
Functions§
- Helper function used by [
get_range
]. Converts occurrences of trie’s null value into the providednull_value
.