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.

  1. KaktovikNumerals :: Block

    unicode-data Unicode.Char.General.Blocks

    U+1D2C0..U+1D2DF: Kaktovik Numerals.

  2. MathematicalAlphanumericSymbols :: Block

    unicode-data Unicode.Char.General.Blocks

    U+1D400..U+1D7FF: Mathematical Alphanumeric Symbols.

  3. MayanNumerals :: Block

    unicode-data Unicode.Char.General.Blocks

    U+1D2E0..U+1D2FF: Mayan Numerals.

  4. OttomanSiyaqNumbers :: Block

    unicode-data Unicode.Char.General.Blocks

    U+1ED00..U+1ED4F: Ottoman Siyaq Numbers.

  5. RumiNumeralSymbols :: Block

    unicode-data Unicode.Char.General.Blocks

    U+10E60..U+10E7F: Rumi Numeral Symbols.

  6. SinhalaArchaicNumbers :: Block

    unicode-data Unicode.Char.General.Blocks

    U+111E0..U+111FF: Sinhala Archaic Numbers.

  7. isAlphaNum :: Char -> Bool

    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

  8. isNumeric :: Char -> Bool

    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)
    

  9. isNumber :: Char -> Bool

    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.

  10. Alphanum :: Text -> Chunk

    versions Data.Versions

    No documentation available.

Page 364 of many | Previous | Next