// generated by diplomat-tool import type { CodePointRangeIterator } from "./CodePointRangeIterator" import type { DataError } from "./DataError" import type { DataProvider } from "./DataProvider" import type { GeneralCategoryGroup } from "./GeneralCategoryGroup" import type { GeneralCategoryGroup_obj } from "./GeneralCategoryGroup" import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
/** *AnICU4XUnicodeSetPropertyobject,capableofqueryingwhetheracodepointiscontainedinasetbasedonaUnicodeproperty. * *Seethe[Rustdocumentationfor`properties`](https://docs.rs/icu/2.1.1/icu/properties/index.html) for more information. * *Seethe[Rustdocumentationfor`CodePointSetData`](https://docs.rs/icu/2.1.1/icu/properties/struct.CodePointSetData.html) for more information. * *Seethe[Rustdocumentationfor`CodePointSetDataBorrowed`](https://docs.rs/icu/2.1.1/icu/properties/struct.CodePointSetDataBorrowed.html) for more information.
*/
export class CodePointSetData { /** @internal */
get ffiValue(): pointer; /** @internal */
constructor();
/** *Checkswhetherthecodepointisintheset. * *Seethe[Rustdocumentationfor`contains`](https://docs.rs/icu/2.1.1/icu/properties/struct.CodePointSetDataBorrowed.html#method.contains) for more information.
*/
contains(cp: codepoint): boolean;
/** *Producesaniteratoroverrangesofcodepointscontainedinthisset * *Seethe[Rustdocumentationfor`iter_ranges`](https://docs.rs/icu/2.1.1/icu/properties/struct.CodePointSetDataBorrowed.html#method.iter_ranges) for more information.
*/
iterRanges(): CodePointRangeIterator;
/** *Producesaniteratoroverrangesofcodepointsnotcontainedinthisset * *Seethe[Rustdocumentationfor`iter_ranges_complemented`](https://docs.rs/icu/2.1.1/icu/properties/struct.CodePointSetDataBorrowed.html#method.iter_ranges_complemented) for more information.
*/
iterRangesComplemented(): CodePointRangeIterator;
/** *ProducesasetforobtainingGeneralCategoryGroupvalues *whichisamaskwiththesameformatasthe`U_GC_XX_MASK`maskinICU4C,usingcompileddata. * *Seethe[Rustdocumentationfor`GeneralCategoryGroup`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.GeneralCategoryGroup.html) for more information. * *Seethe[Rustdocumentationfor`get_set_for_value_group`](https://docs.rs/icu/2.1.1/icu/properties/struct.CodePointMapDataBorrowed.html#method.get_set_for_value_group) for more information.
*/ static createGeneralCategoryGroup(group: GeneralCategoryGroup_obj): CodePointSetData;
/** *ProducesasetforobtainingGeneralCategoryGroupvalues *whichisamaskwiththesameformatasthe`U_GC_XX_MASK`maskinICU4C,usingaprovideddatasource. * *Seethe[Rustdocumentationfor`GeneralCategoryGroup`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.GeneralCategoryGroup.html) for more information. * *Seethe[Rustdocumentationfor`get_set_for_value_group`](https://docs.rs/icu/2.1.1/icu/properties/struct.CodePointMapDataBorrowed.html#method.get_set_for_value_group) for more information.
*/ static createGeneralCategoryGroupWithProvider(provider: DataProvider, group: number): CodePointSetData;
/** *Getthe`Ascii_Hex_Digit`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static asciiHexDigitForChar(ch: codepoint): boolean;
/** *Createasetforthe`Ascii_Hex_Digit`property,usingcompileddata. * *Seethe[Rustdocumentationfor`AsciiHexDigit`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.AsciiHexDigit.html) for more information.
*/ static createAsciiHexDigit(): CodePointSetData;
/** *Createasetforthe`Ascii_Hex_Digit`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`AsciiHexDigit`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.AsciiHexDigit.html) for more information.
*/ static createAsciiHexDigitWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Alnum`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static alnumForChar(ch: codepoint): boolean;
/** *Createasetforthe`Alnum`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Alnum`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Alnum.html) for more information.
*/ static createAlnum(): CodePointSetData;
/** *Createasetforthe`Alnum`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Alnum`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Alnum.html) for more information.
*/ static createAlnumWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Alphabetic`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static alphabeticForChar(ch: codepoint): boolean;
/** *Createasetforthe`Alphabetic`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Alphabetic`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Alphabetic.html) for more information.
*/ static createAlphabetic(): CodePointSetData;
/** *Createasetforthe`Alphabetic`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Alphabetic`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Alphabetic.html) for more information.
*/ static createAlphabeticWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Bidi_Control`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static bidiControlForChar(ch: codepoint): boolean;
/** *Createasetforthe`Bidi_Control`property,usingcompileddata. * *Seethe[Rustdocumentationfor`BidiControl`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.BidiControl.html) for more information.
*/ static createBidiControl(): CodePointSetData;
/** *Createasetforthe`Bidi_Control`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`BidiControl`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.BidiControl.html) for more information.
*/ static createBidiControlWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Bidi_Mirrored`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static bidiMirroredForChar(ch: codepoint): boolean;
/** *Createasetforthe`Bidi_Mirrored`property,usingcompileddata. * *Seethe[Rustdocumentationfor`BidiMirrored`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.BidiMirrored.html) for more information.
*/ static createBidiMirrored(): CodePointSetData;
/** *Createasetforthe`Bidi_Mirrored`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`BidiMirrored`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.BidiMirrored.html) for more information.
*/ static createBidiMirroredWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Blank`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static blankForChar(ch: codepoint): boolean;
/** *Createasetforthe`Blank`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Blank`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Blank.html) for more information.
*/ static createBlank(): CodePointSetData;
/** *Createasetforthe`Blank`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Blank`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Blank.html) for more information.
*/ static createBlankWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Cased`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static casedForChar(ch: codepoint): boolean;
/** *Createasetforthe`Cased`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Cased`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Cased.html) for more information.
*/ static createCased(): CodePointSetData;
/** *Createasetforthe`Cased`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Cased`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Cased.html) for more information.
*/ static createCasedWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Case_Ignorable`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static caseIgnorableForChar(ch: codepoint): boolean;
/** *Createasetforthe`Case_Ignorable`property,usingcompileddata. * *Seethe[Rustdocumentationfor`CaseIgnorable`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.CaseIgnorable.html) for more information.
*/ static createCaseIgnorable(): CodePointSetData;
/** *Createasetforthe`Case_Ignorable`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`CaseIgnorable`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.CaseIgnorable.html) for more information.
*/ static createCaseIgnorableWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Full_Composition_Exclusion`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static fullCompositionExclusionForChar(ch: codepoint): boolean;
/** *Createasetforthe`Full_Composition_Exclusion`property,usingcompileddata. * *Seethe[Rustdocumentationfor`FullCompositionExclusion`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.FullCompositionExclusion.html) for more information.
*/ static createFullCompositionExclusion(): CodePointSetData;
/** *Createasetforthe`Full_Composition_Exclusion`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`FullCompositionExclusion`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.FullCompositionExclusion.html) for more information.
*/ static createFullCompositionExclusionWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Changes_When_Casefolded`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static changesWhenCasefoldedForChar(ch: codepoint): boolean;
/** *Createasetforthe`Changes_When_Casefolded`property,usingcompileddata. * *Seethe[Rustdocumentationfor`ChangesWhenCasefolded`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ChangesWhenCasefolded.html) for more information.
*/ static createChangesWhenCasefolded(): CodePointSetData;
/** *Createasetforthe`Changes_When_Casefolded`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`ChangesWhenCasefolded`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ChangesWhenCasefolded.html) for more information.
*/ static createChangesWhenCasefoldedWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Changes_When_Casemapped`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static changesWhenCasemappedForChar(ch: codepoint): boolean;
/** *Createasetforthe`Changes_When_Casemapped`property,usingcompileddata. * *Seethe[Rustdocumentationfor`ChangesWhenCasemapped`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ChangesWhenCasemapped.html) for more information.
*/ static createChangesWhenCasemapped(): CodePointSetData;
/** *Createasetforthe`Changes_When_Casemapped`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`ChangesWhenCasemapped`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ChangesWhenCasemapped.html) for more information.
*/ static createChangesWhenCasemappedWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Changes_When_Nfkc_Casefolded`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static changesWhenNfkcCasefoldedForChar(ch: codepoint): boolean;
/** *Createasetforthe`Changes_When_Nfkc_Casefolded`property,usingcompileddata. * *Seethe[Rustdocumentationfor`ChangesWhenNfkcCasefolded`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ChangesWhenNfkcCasefolded.html) for more information.
*/ static createChangesWhenNfkcCasefolded(): CodePointSetData;
/** *Createasetforthe`Changes_When_Nfkc_Casefolded`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`ChangesWhenNfkcCasefolded`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ChangesWhenNfkcCasefolded.html) for more information.
*/ static createChangesWhenNfkcCasefoldedWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Changes_When_Lowercased`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static changesWhenLowercasedForChar(ch: codepoint): boolean;
/** *Createasetforthe`Changes_When_Lowercased`property,usingcompileddata. * *Seethe[Rustdocumentationfor`ChangesWhenLowercased`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ChangesWhenLowercased.html) for more information.
*/ static createChangesWhenLowercased(): CodePointSetData;
/** *Createasetforthe`Changes_When_Lowercased`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`ChangesWhenLowercased`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ChangesWhenLowercased.html) for more information.
*/ static createChangesWhenLowercasedWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Changes_When_Titlecased`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static changesWhenTitlecasedForChar(ch: codepoint): boolean;
/** *Createasetforthe`Changes_When_Titlecased`property,usingcompileddata. * *Seethe[Rustdocumentationfor`ChangesWhenTitlecased`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ChangesWhenTitlecased.html) for more information.
*/ static createChangesWhenTitlecased(): CodePointSetData;
/** *Createasetforthe`Changes_When_Titlecased`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`ChangesWhenTitlecased`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ChangesWhenTitlecased.html) for more information.
*/ static createChangesWhenTitlecasedWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Changes_When_Uppercased`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static changesWhenUppercasedForChar(ch: codepoint): boolean;
/** *Createasetforthe`Changes_When_Uppercased`property,usingcompileddata. * *Seethe[Rustdocumentationfor`ChangesWhenUppercased`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ChangesWhenUppercased.html) for more information.
*/ static createChangesWhenUppercased(): CodePointSetData;
/** *Createasetforthe`Changes_When_Uppercased`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`ChangesWhenUppercased`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ChangesWhenUppercased.html) for more information.
*/ static createChangesWhenUppercasedWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Dash`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static dashForChar(ch: codepoint): boolean;
/** *Createasetforthe`Dash`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Dash`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Dash.html) for more information.
*/ static createDash(): CodePointSetData;
/** *Createasetforthe`Dash`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Dash`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Dash.html) for more information.
*/ static createDashWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Deprecated`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static deprecatedForChar(ch: codepoint): boolean;
/** *Createasetforthe`Deprecated`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Deprecated`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Deprecated.html) for more information.
*/ static createDeprecated(): CodePointSetData;
/** *Createasetforthe`Deprecated`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Deprecated`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Deprecated.html) for more information.
*/ static createDeprecatedWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Default_Ignorable_Code_Point`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static defaultIgnorableCodePointForChar(ch: codepoint): boolean;
/** *Createasetforthe`Default_Ignorable_Code_Point`property,usingcompileddata. * *Seethe[Rustdocumentationfor`DefaultIgnorableCodePoint`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.DefaultIgnorableCodePoint.html) for more information.
*/ static createDefaultIgnorableCodePoint(): CodePointSetData;
/** *Createasetforthe`Default_Ignorable_Code_Point`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`DefaultIgnorableCodePoint`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.DefaultIgnorableCodePoint.html) for more information.
*/ static createDefaultIgnorableCodePointWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Diacritic`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static diacriticForChar(ch: codepoint): boolean;
/** *Createasetforthe`Diacritic`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Diacritic`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Diacritic.html) for more information.
*/ static createDiacritic(): CodePointSetData;
/** *Createasetforthe`Diacritic`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Diacritic`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Diacritic.html) for more information.
*/ static createDiacriticWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Emoji_Modifier_Base`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static emojiModifierBaseForChar(ch: codepoint): boolean;
/** *Createasetforthe`Emoji_Modifier_Base`property,usingcompileddata. * *Seethe[Rustdocumentationfor`EmojiModifierBase`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.EmojiModifierBase.html) for more information.
*/ static createEmojiModifierBase(): CodePointSetData;
/** *Createasetforthe`Emoji_Modifier_Base`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`EmojiModifierBase`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.EmojiModifierBase.html) for more information.
*/ static createEmojiModifierBaseWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Emoji_Component`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static emojiComponentForChar(ch: codepoint): boolean;
/** *Createasetforthe`Emoji_Component`property,usingcompileddata. * *Seethe[Rustdocumentationfor`EmojiComponent`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.EmojiComponent.html) for more information.
*/ static createEmojiComponent(): CodePointSetData;
/** *Createasetforthe`Emoji_Component`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`EmojiComponent`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.EmojiComponent.html) for more information.
*/ static createEmojiComponentWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Emoji_Modifier`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static emojiModifierForChar(ch: codepoint): boolean;
/** *Createasetforthe`Emoji_Modifier`property,usingcompileddata. * *Seethe[Rustdocumentationfor`EmojiModifier`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.EmojiModifier.html) for more information.
*/ static createEmojiModifier(): CodePointSetData;
/** *Createasetforthe`Emoji_Modifier`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`EmojiModifier`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.EmojiModifier.html) for more information.
*/ static createEmojiModifierWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Emoji`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static emojiForChar(ch: codepoint): boolean;
/** *Createasetforthe`Emoji`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Emoji`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Emoji.html) for more information.
*/ static createEmoji(): CodePointSetData;
/** *Createasetforthe`Emoji`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Emoji`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Emoji.html) for more information.
*/ static createEmojiWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Emoji_Presentation`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static emojiPresentationForChar(ch: codepoint): boolean;
/** *Createasetforthe`Emoji_Presentation`property,usingcompileddata. * *Seethe[Rustdocumentationfor`EmojiPresentation`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.EmojiPresentation.html) for more information.
*/ static createEmojiPresentation(): CodePointSetData;
/** *Createasetforthe`Emoji_Presentation`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`EmojiPresentation`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.EmojiPresentation.html) for more information.
*/ static createEmojiPresentationWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Extender`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static extenderForChar(ch: codepoint): boolean;
/** *Createasetforthe`Extender`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Extender`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Extender.html) for more information.
*/ static createExtender(): CodePointSetData;
/** *Createasetforthe`Extender`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Extender`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Extender.html) for more information.
*/ static createExtenderWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Extended_Pictographic`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static extendedPictographicForChar(ch: codepoint): boolean;
/** *Createasetforthe`Extended_Pictographic`property,usingcompileddata. * *Seethe[Rustdocumentationfor`ExtendedPictographic`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ExtendedPictographic.html) for more information.
*/ static createExtendedPictographic(): CodePointSetData;
/** *Createasetforthe`Extended_Pictographic`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`ExtendedPictographic`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ExtendedPictographic.html) for more information.
*/ static createExtendedPictographicWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Graph`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static graphForChar(ch: codepoint): boolean;
/** *Createasetforthe`Graph`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Graph`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Graph.html) for more information.
*/ static createGraph(): CodePointSetData;
/** *Createasetforthe`Graph`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Graph`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Graph.html) for more information.
*/ static createGraphWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Grapheme_Base`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static graphemeBaseForChar(ch: codepoint): boolean;
/** *Createasetforthe`Grapheme_Base`property,usingcompileddata. * *Seethe[Rustdocumentationfor`GraphemeBase`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.GraphemeBase.html) for more information.
*/ static createGraphemeBase(): CodePointSetData;
/** *Createasetforthe`Grapheme_Base`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`GraphemeBase`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.GraphemeBase.html) for more information.
*/ static createGraphemeBaseWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Grapheme_Extend`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static graphemeExtendForChar(ch: codepoint): boolean;
/** *Createasetforthe`Grapheme_Extend`property,usingcompileddata. * *Seethe[Rustdocumentationfor`GraphemeExtend`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.GraphemeExtend.html) for more information.
*/ static createGraphemeExtend(): CodePointSetData;
/** *Createasetforthe`Grapheme_Extend`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`GraphemeExtend`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.GraphemeExtend.html) for more information.
*/ static createGraphemeExtendWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Grapheme_Link`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static graphemeLinkForChar(ch: codepoint): boolean;
/** *Createasetforthe`Grapheme_Link`property,usingcompileddata. * *Seethe[Rustdocumentationfor`GraphemeLink`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.GraphemeLink.html) for more information.
*/ static createGraphemeLink(): CodePointSetData;
/** *Createasetforthe`Grapheme_Link`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`GraphemeLink`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.GraphemeLink.html) for more information.
*/ static createGraphemeLinkWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Hex_Digit`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static hexDigitForChar(ch: codepoint): boolean;
/** *Createasetforthe`Hex_Digit`property,usingcompileddata. * *Seethe[Rustdocumentationfor`HexDigit`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.HexDigit.html) for more information.
*/ static createHexDigit(): CodePointSetData;
/** *Createasetforthe`Hex_Digit`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`HexDigit`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.HexDigit.html) for more information.
*/ static createHexDigitWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Hyphen`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static hyphenForChar(ch: codepoint): boolean;
/** *Createasetforthe`Hyphen`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Hyphen`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Hyphen.html) for more information.
*/ static createHyphen(): CodePointSetData;
/** *Createasetforthe`Hyphen`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Hyphen`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Hyphen.html) for more information.
*/ static createHyphenWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`ID_Compat_Math_Continue`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static idCompatMathContinueForChar(ch: codepoint): boolean;
/** *Createasetforthe`ID_Compat_Math_Continue`property,usingcompileddata. * *Seethe[Rustdocumentationfor`IdCompatMathContinue`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdCompatMathContinue.html) for more information.
*/ static createIdCompatMathContinue(): CodePointSetData;
/** *Createasetforthe`ID_Compat_Math_Continue`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`IdCompatMathContinue`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdCompatMathContinue.html) for more information.
*/ static createIdCompatMathContinueWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`ID_Compat_Math_Start`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static idCompatMathStartForChar(ch: codepoint): boolean;
/** *Createasetforthe`ID_Compat_Math_Start`property,usingcompileddata. * *Seethe[Rustdocumentationfor`IdCompatMathStart`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdCompatMathStart.html) for more information.
*/ static createIdCompatMathStart(): CodePointSetData;
/** *Createasetforthe`ID_Compat_Math_Start`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`IdCompatMathStart`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdCompatMathStart.html) for more information.
*/ static createIdCompatMathStartWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Id_Continue`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static idContinueForChar(ch: codepoint): boolean;
/** *Createasetforthe`Id_Continue`property,usingcompileddata. * *Seethe[Rustdocumentationfor`IdContinue`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdContinue.html) for more information.
*/ static createIdContinue(): CodePointSetData;
/** *Createasetforthe`Id_Continue`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`IdContinue`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdContinue.html) for more information.
*/ static createIdContinueWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Ideographic`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static ideographicForChar(ch: codepoint): boolean;
/** *Createasetforthe`Ideographic`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Ideographic`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Ideographic.html) for more information.
*/ static createIdeographic(): CodePointSetData;
/** *Createasetforthe`Ideographic`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Ideographic`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Ideographic.html) for more information.
*/ static createIdeographicWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Id_Start`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static idStartForChar(ch: codepoint): boolean;
/** *Createasetforthe`Id_Start`property,usingcompileddata. * *Seethe[Rustdocumentationfor`IdStart`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdStart.html) for more information.
*/ static createIdStart(): CodePointSetData;
/** *Createasetforthe`Id_Start`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`IdStart`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdStart.html) for more information.
*/ static createIdStartWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Ids_Binary_Operator`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static idsBinaryOperatorForChar(ch: codepoint): boolean;
/** *Createasetforthe`Ids_Binary_Operator`property,usingcompileddata. * *Seethe[Rustdocumentationfor`IdsBinaryOperator`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdsBinaryOperator.html) for more information.
*/ static createIdsBinaryOperator(): CodePointSetData;
/** *Createasetforthe`Ids_Binary_Operator`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`IdsBinaryOperator`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdsBinaryOperator.html) for more information.
*/ static createIdsBinaryOperatorWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Ids_Trinary_Operator`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static idsTrinaryOperatorForChar(ch: codepoint): boolean;
/** *Createasetforthe`Ids_Trinary_Operator`property,usingcompileddata. * *Seethe[Rustdocumentationfor`IdsTrinaryOperator`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdsTrinaryOperator.html) for more information.
*/ static createIdsTrinaryOperator(): CodePointSetData;
/** *Createasetforthe`Ids_Trinary_Operator`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`IdsTrinaryOperator`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdsTrinaryOperator.html) for more information.
*/ static createIdsTrinaryOperatorWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Ids_Unary_Operator`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static idsUnaryOperatorForChar(ch: codepoint): boolean;
/** *Createasetforthe`Ids_Unary_Operator`property,usingcompileddata. * *Seethe[Rustdocumentationfor`IdsUnaryOperator`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdsUnaryOperator.html) for more information.
*/ static createIdsUnaryOperator(): CodePointSetData;
/** *Createasetforthe`Ids_Unary_Operator`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`IdsUnaryOperator`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.IdsUnaryOperator.html) for more information.
*/ static createIdsUnaryOperatorWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Join_Control`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static joinControlForChar(ch: codepoint): boolean;
/** *Createasetforthe`Join_Control`property,usingcompileddata. * *Seethe[Rustdocumentationfor`JoinControl`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.JoinControl.html) for more information.
*/ static createJoinControl(): CodePointSetData;
/** *Createasetforthe`Join_Control`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`JoinControl`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.JoinControl.html) for more information.
*/ static createJoinControlWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Logical_Order_Exception`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static logicalOrderExceptionForChar(ch: codepoint): boolean;
/** *Createasetforthe`Logical_Order_Exception`property,usingcompileddata. * *Seethe[Rustdocumentationfor`LogicalOrderException`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.LogicalOrderException.html) for more information.
*/ static createLogicalOrderException(): CodePointSetData;
/** *Createasetforthe`Logical_Order_Exception`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`LogicalOrderException`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.LogicalOrderException.html) for more information.
*/ static createLogicalOrderExceptionWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Lowercase`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static lowercaseForChar(ch: codepoint): boolean;
/** *Createasetforthe`Lowercase`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Lowercase`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Lowercase.html) for more information.
*/ static createLowercase(): CodePointSetData;
/** *Createasetforthe`Lowercase`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Lowercase`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Lowercase.html) for more information.
*/ static createLowercaseWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Math`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static mathForChar(ch: codepoint): boolean;
/** *Createasetforthe`Math`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Math`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Math.html) for more information.
*/ static createMath(): CodePointSetData;
/** *Createasetforthe`Math`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Math`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Math.html) for more information.
*/ static createMathWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Modifier_Combining_mark`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static modifierCombiningMarkForChar(ch: codepoint): boolean;
/** *Createasetforthe`Modifier_Combining_mark`property,usingcompileddata. * *Seethe[Rustdocumentationfor`ModifierCombiningMark`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ModifierCombiningMark.html) for more information.
*/ static createModifierCombiningMark(): CodePointSetData;
/** *Createasetforthe`Modifier_Combining_mark`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`ModifierCombiningMark`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.ModifierCombiningMark.html) for more information.
*/ static createModifierCombiningMarkWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Noncharacter_Code_Point`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static noncharacterCodePointForChar(ch: codepoint): boolean;
/** *Createasetforthe`Noncharacter_Code_Point`property,usingcompileddata. * *Seethe[Rustdocumentationfor`NoncharacterCodePoint`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.NoncharacterCodePoint.html) for more information.
*/ static createNoncharacterCodePoint(): CodePointSetData;
/** *Createasetforthe`Noncharacter_Code_Point`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`NoncharacterCodePoint`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.NoncharacterCodePoint.html) for more information.
*/ static createNoncharacterCodePointWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Nfc_Inert`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static nfcInertForChar(ch: codepoint): boolean;
/** *Createasetforthe`Nfc_Inert`property,usingcompileddata. * *Seethe[Rustdocumentationfor`NfcInert`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.NfcInert.html) for more information.
*/ static createNfcInert(): CodePointSetData;
/** *Createasetforthe`Nfc_Inert`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`NfcInert`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.NfcInert.html) for more information.
*/ static createNfcInertWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Nfd_Inert`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static nfdInertForChar(ch: codepoint): boolean;
/** *Createasetforthe`Nfd_Inert`property,usingcompileddata. * *Seethe[Rustdocumentationfor`NfdInert`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.NfdInert.html) for more information.
*/ static createNfdInert(): CodePointSetData;
/** *Createasetforthe`Nfd_Inert`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`NfdInert`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.NfdInert.html) for more information.
*/ static createNfdInertWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Nfkc_Inert`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static nfkcInertForChar(ch: codepoint): boolean;
/** *Createasetforthe`Nfkc_Inert`property,usingcompileddata. * *Seethe[Rustdocumentationfor`NfkcInert`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.NfkcInert.html) for more information.
*/ static createNfkcInert(): CodePointSetData;
/** *Createasetforthe`Nfkc_Inert`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`NfkcInert`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.NfkcInert.html) for more information.
*/ static createNfkcInertWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Nfkd_Inert`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static nfkdInertForChar(ch: codepoint): boolean;
/** *Createasetforthe`Nfkd_Inert`property,usingcompileddata. * *Seethe[Rustdocumentationfor`NfkdInert`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.NfkdInert.html) for more information.
*/ static createNfkdInert(): CodePointSetData;
/** *Createasetforthe`Nfkd_Inert`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`NfkdInert`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.NfkdInert.html) for more information.
*/ static createNfkdInertWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Pattern_Syntax`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static patternSyntaxForChar(ch: codepoint): boolean;
/** *Createasetforthe`Pattern_Syntax`property,usingcompileddata. * *Seethe[Rustdocumentationfor`PatternSyntax`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.PatternSyntax.html) for more information.
*/ static createPatternSyntax(): CodePointSetData;
/** *Createasetforthe`Pattern_Syntax`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`PatternSyntax`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.PatternSyntax.html) for more information.
*/ static createPatternSyntaxWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Pattern_White_Space`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static patternWhiteSpaceForChar(ch: codepoint): boolean;
/** *Createasetforthe`Pattern_White_Space`property,usingcompileddata. * *Seethe[Rustdocumentationfor`PatternWhiteSpace`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.PatternWhiteSpace.html) for more information.
*/ static createPatternWhiteSpace(): CodePointSetData;
/** *Createasetforthe`Pattern_White_Space`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`PatternWhiteSpace`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.PatternWhiteSpace.html) for more information.
*/ static createPatternWhiteSpaceWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Prepended_Concatenation_Mark`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static prependedConcatenationMarkForChar(ch: codepoint): boolean;
/** *Createasetforthe`Prepended_Concatenation_Mark`property,usingcompileddata. * *Seethe[Rustdocumentationfor`PrependedConcatenationMark`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.PrependedConcatenationMark.html) for more information.
*/ static createPrependedConcatenationMark(): CodePointSetData;
/** *Createasetforthe`Prepended_Concatenation_Mark`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`PrependedConcatenationMark`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.PrependedConcatenationMark.html) for more information.
*/ static createPrependedConcatenationMarkWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Print`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static printForChar(ch: codepoint): boolean;
/** *Createasetforthe`Print`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Print`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Print.html) for more information.
*/ static createPrint(): CodePointSetData;
/** *Createasetforthe`Print`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Print`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Print.html) for more information.
*/ static createPrintWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Quotation_Mark`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static quotationMarkForChar(ch: codepoint): boolean;
/** *Createasetforthe`Quotation_Mark`property,usingcompileddata. * *Seethe[Rustdocumentationfor`QuotationMark`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.QuotationMark.html) for more information.
*/ static createQuotationMark(): CodePointSetData;
/** *Createasetforthe`Quotation_Mark`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`QuotationMark`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.QuotationMark.html) for more information.
*/ static createQuotationMarkWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Radical`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static radicalForChar(ch: codepoint): boolean;
/** *Createasetforthe`Radical`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Radical`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Radical.html) for more information.
*/ static createRadical(): CodePointSetData;
/** *Createasetforthe`Radical`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Radical`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Radical.html) for more information.
*/ static createRadicalWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Regional_Indicator`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static regionalIndicatorForChar(ch: codepoint): boolean;
/** *Createasetforthe`Regional_Indicator`property,usingcompileddata. * *Seethe[Rustdocumentationfor`RegionalIndicator`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.RegionalIndicator.html) for more information.
*/ static createRegionalIndicator(): CodePointSetData;
/** *Createasetforthe`Regional_Indicator`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`RegionalIndicator`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.RegionalIndicator.html) for more information.
*/ static createRegionalIndicatorWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Soft_Dotted`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static softDottedForChar(ch: codepoint): boolean;
/** *Createasetforthe`Soft_Dotted`property,usingcompileddata. * *Seethe[Rustdocumentationfor`SoftDotted`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.SoftDotted.html) for more information.
*/ static createSoftDotted(): CodePointSetData;
/** *Createasetforthe`Soft_Dotted`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`SoftDotted`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.SoftDotted.html) for more information.
*/ static createSoftDottedWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Segment_Starter`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static segmentStarterForChar(ch: codepoint): boolean;
/** *Createasetforthe`Segment_Starter`property,usingcompileddata. * *Seethe[Rustdocumentationfor`SegmentStarter`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.SegmentStarter.html) for more information.
*/ static createSegmentStarter(): CodePointSetData;
/** *Createasetforthe`Segment_Starter`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`SegmentStarter`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.SegmentStarter.html) for more information.
*/ static createSegmentStarterWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Case_Sensitive`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static caseSensitiveForChar(ch: codepoint): boolean;
/** *Createasetforthe`Case_Sensitive`property,usingcompileddata. * *Seethe[Rustdocumentationfor`CaseSensitive`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.CaseSensitive.html) for more information.
*/ static createCaseSensitive(): CodePointSetData;
/** *Createasetforthe`Case_Sensitive`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`CaseSensitive`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.CaseSensitive.html) for more information.
*/ static createCaseSensitiveWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Sentence_Terminal`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static sentenceTerminalForChar(ch: codepoint): boolean;
/** *Createasetforthe`Sentence_Terminal`property,usingcompileddata. * *Seethe[Rustdocumentationfor`SentenceTerminal`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.SentenceTerminal.html) for more information.
*/ static createSentenceTerminal(): CodePointSetData;
/** *Createasetforthe`Sentence_Terminal`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`SentenceTerminal`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.SentenceTerminal.html) for more information.
*/ static createSentenceTerminalWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Terminal_Punctuation`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static terminalPunctuationForChar(ch: codepoint): boolean;
/** *Createasetforthe`Terminal_Punctuation`property,usingcompileddata. * *Seethe[Rustdocumentationfor`TerminalPunctuation`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.TerminalPunctuation.html) for more information.
*/ static createTerminalPunctuation(): CodePointSetData;
/** *Createasetforthe`Terminal_Punctuation`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`TerminalPunctuation`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.TerminalPunctuation.html) for more information.
*/ static createTerminalPunctuationWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Unified_Ideograph`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static unifiedIdeographForChar(ch: codepoint): boolean;
/** *Createasetforthe`Unified_Ideograph`property,usingcompileddata. * *Seethe[Rustdocumentationfor`UnifiedIdeograph`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.UnifiedIdeograph.html) for more information.
*/ static createUnifiedIdeograph(): CodePointSetData;
/** *Createasetforthe`Unified_Ideograph`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`UnifiedIdeograph`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.UnifiedIdeograph.html) for more information.
*/ static createUnifiedIdeographWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Uppercase`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static uppercaseForChar(ch: codepoint): boolean;
/** *Createasetforthe`Uppercase`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Uppercase`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Uppercase.html) for more information.
*/ static createUppercase(): CodePointSetData;
/** *Createasetforthe`Uppercase`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Uppercase`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Uppercase.html) for more information.
*/ static createUppercaseWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Variation_Selector`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static variationSelectorForChar(ch: codepoint): boolean;
/** *Createasetforthe`Variation_Selector`property,usingcompileddata. * *Seethe[Rustdocumentationfor`VariationSelector`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.VariationSelector.html) for more information.
*/ static createVariationSelector(): CodePointSetData;
/** *Createasetforthe`Variation_Selector`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`VariationSelector`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.VariationSelector.html) for more information.
*/ static createVariationSelectorWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`White_Space`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static whiteSpaceForChar(ch: codepoint): boolean;
/** *Createasetforthe`White_Space`property,usingcompileddata. * *Seethe[Rustdocumentationfor`WhiteSpace`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.WhiteSpace.html) for more information.
*/ static createWhiteSpace(): CodePointSetData;
/** *Createasetforthe`White_Space`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`WhiteSpace`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.WhiteSpace.html) for more information.
*/ static createWhiteSpaceWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Xdigit`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static xdigitForChar(ch: codepoint): boolean;
/** *Createasetforthe`Xdigit`property,usingcompileddata. * *Seethe[Rustdocumentationfor`Xdigit`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Xdigit.html) for more information.
*/ static createXdigit(): CodePointSetData;
/** *Createasetforthe`Xdigit`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`Xdigit`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.Xdigit.html) for more information.
*/ static createXdigitWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Xid_Continue`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static xidContinueForChar(ch: codepoint): boolean;
/** *Createasetforthe`Xid_Continue`property,usingcompileddata. * *Seethe[Rustdocumentationfor`XidContinue`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.XidContinue.html) for more information.
*/ static createXidContinue(): CodePointSetData;
/** *Createasetforthe`Xid_Continue`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`XidContinue`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.XidContinue.html) for more information.
*/ static createXidContinueWithProvider(provider: DataProvider): CodePointSetData;
/** *Getthe`Xid_Start`valueforagivencharacter,usingcompileddata * *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.BinaryProperty.html#tymethod.for_char) for more information.
*/ static xidStartForChar(ch: codepoint): boolean;
/** *Createasetforthe`Xid_Start`property,usingcompileddata. * *Seethe[Rustdocumentationfor`XidStart`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.XidStart.html) for more information. */ staticcreateXidStart():CodePointSetData;
/** *Createasetforthe`Xid_Start`property,usingaparticulardatasource. * *Seethe[Rustdocumentationfor`XidStart`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.XidStart.html) for more information.
*/ static createXidStartWithProvider(provider: DataProvider): CodePointSetData;
/** *[ecma]:https://tc39.es/ecma262/#table-binary-unicode-properties * *Seethe[Rustdocumentationfor`new_for_ecma262`](https://docs.rs/icu/2.1.1/icu/properties/struct.CodePointSetData.html#method.new_for_ecma262) for more information.
*/ static createForEcma262(propertyName: string): CodePointSetData;
/** *[ecma]:https://tc39.es/ecma262/#table-binary-unicode-properties * *Seethe[Rustdocumentationfor`new_for_ecma262`](https://docs.rs/icu/2.1.1/icu/properties/struct.CodePointSetData.html#method.new_for_ecma262) for more information.
*/ static createForEcma262WithProvider(provider: DataProvider, propertyName: string): CodePointSetData;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.