Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
unicode-data Unicode.Char.General.Blocks U+1D2C0..U+1D2DF: Kaktovik Numerals.
MathematicalAlphanumericSymbols :: Blockunicode-data Unicode.Char.General.Blocks U+1D400..U+1D7FF: Mathematical Alphanumeric Symbols.
-
unicode-data Unicode.Char.General.Blocks U+1D2E0..U+1D2FF: Mayan Numerals.
-
unicode-data Unicode.Char.General.Blocks U+1ED00..U+1ED4F: Ottoman Siyaq Numbers.
-
unicode-data Unicode.Char.General.Blocks U+10E60..U+10E7F: Rumi Numeral Symbols.
SinhalaArchaicNumbers :: Blockunicode-data Unicode.Char.General.Blocks U+111E0..U+111FF: Sinhala Archaic Numbers.
-
unicode-data Unicode.Char.General.Compat Selects alphabetic or numeric Unicode characters. This function returns True if its argument has one of the following GeneralCategorys, or False otherwise:
- UppercaseLetter
- LowercaseLetter
- TitlecaseLetter
- ModifierLetter
- OtherLetter
- DecimalNumber
- LetterNumber
- OtherNumber
isAlphaNum c == Data.Char.isAlphaNum c
Note: this function is incompatible with isAlphabetic:>>> Unicode.Char.General.isAlphabetic '\x345' True >>> isAlphaNum '\x345' False
@since 0.6.0 moved to Compat module -
unicode-data Unicode.Char.Numeric Selects Unicode character with a numeric value. Note: a character may have a numeric value but return False with the predicate isNumber, because isNumber only tests GeneralCategory: some CJK characters are OtherLetter and do have a numeric value.
isNumeric c == isJust (numericValue c)
-
unicode-data Unicode.Char.Numeric.Compat Selects Unicode numeric characters, including digits from various scripts, Roman numerals, et cetera. This function returns True if its argument has one of the following GeneralCategorys, or False otherwise:
Note: a character may have a numeric value (see numericValue) but return False, because isNumber only tests GeneralCategory: some CJK characters are OtherLetter and do have a numeric value. Use isNumeric to cover those cases as well.isNumber c == Data.Char.isNumber c
@since 0.3.1 moved to Compat module. -
versions Data.Versions No documentation available.