res-regex 0.1.4

A js-regex validator
Documentation
pub mod general_category;
pub mod script_values;

/// This is an ordered combination
/// of the General Category and
/// Binary Properties for checking
/// the lone unicode class escape
pub static GC_AND_BP: &[&str] = &[
    "AHex",
    "ASCII",
    "ASCII_Hex_Digit",
    "Alpha",
    "Alphabetic",
    "Any",
    "Assigned",
    "Bidi_C",
    "Bidi_Control",
    "Bidi_M",
    "Bidi_Mirrored",
    "C",
    "CI",
    "CWCF",
    "CWCM",
    "CWKCF",
    "CWL",
    "CWT",
    "CWU",
    "Case_Ignorable",
    "CasedCased",
    "Cased_Letter",
    "Cc",
    "Cf",
    "Changes_When_Casefolded",
    "Changes_When_Casemapped",
    "Changes_When_Lowercased",
    "Changes_When_NFKC_Casefolded",
    "Changes_When_Titlecased",
    "Changes_When_Uppercased",
    "Close_Punctuation",
    "Cn",
    "Co",
    "Combining_Mark",
    "Connector_Punctuation",
    "Control",
    "Cs",
    "Currency_Symbol",
    "DI",
    "Dash",
    "Dash_Punctuation",
    "Decimal_Number",
    "Default_Ignorable_Code_Point",
    "Dep",
    "Deprecated",
    "Dia",
    "Diacritic",
    "Emoji",
    "Emoji_Component",
    "Emoji_Modifier",
    "Emoji_Modifier_Base",
    "Emoji_Presentation",
    "Enclosing_Mark",
    "Ext",
    "Extended_Pictographic",
    "Extender",
    "Final_Punctuation",
    "Format",
    "Gr_Base",
    "Gr_Ext",
    "Grapheme_Base",
    "Grapheme_Extend",
    "Hex",
    "Hex_Digit",
    "IDC",
    "IDS",
    "IDSB",
    "IDST",
    "IDS_Binary_Operator",
    "IDS_Trinary_Operator",
    "ID_Continue",
    "ID_Start",
    "Ideo",
    "Ideographic",
    "Initial_Punctuation",
    "Join_C",
    "Join_Control",
    "L",
    "LC",
    "LOE",
    "Letter",
    "Letter_Number",
    "Line_Separator",
    "Ll",
    "Lm",
    "Lo",
    "Logical_Order_Exception",
    "Lower",
    "Lowercase",
    "Lowercase_Letter",
    "Lt",
    "Lu",
    "M",
    "Mark",
    "Math",
    "Math_Symbol",
    "Mc",
    "Me",
    "Mn",
    "Modifier_Letter",
    "Modifier_Symbol",
    "N",
    "NChar",
    "Nd",
    "Nl",
    "No",
    "Noncharacter_Code_Point",
    "Nonspacing_Mark",
    "Number",
    "Open_Punctuation",
    "Other",
    "Other_Letter",
    "Other_Number",
    "Other_Punctuation",
    "Other_Symbol",
    "P",
    "Paragraph_Separator",
    "Pat_Syn",
    "Pat_WS",
    "Pattern_Syntax",
    "Pattern_White_Space",
    "Pc",
    "Pd",
    "Pe",
    "Pf",
    "Pi",
    "Po",
    "Private_Use",
    "Ps",
    "Punctuation",
    "QMark",
    "Quotation_Mark",
    "RI",
    "Radical",
    "Regional_Indicator",
    "S",
    "SD",
    "STerm",
    "Sc",
    "Sentence_Terminal",
    "Separator",
    "Sk",
    "Sm",
    "So",
    "Soft_Dotted",
    "Space_Separator",
    "Spacing_Mark",
    "Surrogate",
    "Symbol",
    "Term",
    "Terminal_Punctuation",
    "Titlecase_Letter",
    "UIdeo",
    "Unassigned",
    "Unified_Ideograph",
    "Upper",
    "Uppercase",
    "Uppercase_Letter",
    "VS",
    "Variation_Selector",
    "White_Space",
    "XIDC",
    "XIDS",
    "XID_Continue",
    "XID_Start",
    "Z",
    "Zl",
    "Zp",
    "Zs",
    "cntrl",
    "digit",
    "punct",
    "space",
];