Module icu::experimental::unicodeset_parse
source · Expand description
This module provides parsing functionality for UTS #35 - Unicode Sets.
Parses into CodePointInversionListAndStringList
.
See parse
for more information.
Structs§
- The error type returned by the
parse
functions in this crate. - The map used for parsing UnicodeSets with variable support. See
parse_with_variables
.
Enums§
- The kind of error that occurred.
- The value of a variable in a UnicodeSet. Used as value type in
VariableMap
.
Functions§
- Parses a UnicodeSet pattern and returns a UnicodeSet in the form of a
CodePointInversionListAndStringList
, as well as the number of bytes consumed from the source string. - A version of
parse
that uses custom data provided by aDataProvider
. - A version of
parse_with_variables
that uses custom data provided by aDataProvider
. - Parses a UnicodeSet pattern with support for variables enabled.