Hoogle Search

Within LTS Haskell 24.39 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. numrange :: Value (Range Scientific)

    postgresql-binary PostgreSQL.Binary.Decoding

    numrange
    

  2. numeric :: Scientific -> Encoding

    postgresql-binary PostgreSQL.Binary.Encoding

    No documentation available.

  3. nummultirange :: Multirange Scientific -> Encoding

    postgresql-binary PostgreSQL.Binary.Encoding

    No documentation available.

  4. numrange :: Range Scientific -> Encoding

    postgresql-binary PostgreSQL.Binary.Encoding

    No documentation available.

  5. numEvents :: Categorical p a -> Int

    random-fu Data.Random.Distribution.Categorical

    No documentation available.

  6. number :: (PositionalSystem s, Integral α, Printer p) => s -> α -> p

    text-printer Text.Printer.Integral

    Print a number in the specified positional numeral system. Negative values are prefixed with a minus sign.

  7. number' :: (PositionalSystem s, Integral α, Printer p) => s -> p -> p -> p -> α -> p

    text-printer Text.Printer.Integral

    Print a number in the specified positional numeral system.

  8. numericValue :: Char -> Maybe Rational

    unicode-data Unicode.Char.Numeric

    Numeric value of a character, if relevant. 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.

  9. numberToChar :: String -> Exceptional String Char

    xml-basic Text.HTML.Basic.Entity

    Lookup a numeric entity, the leading '#' must have already been removed.

    numberToChar "65" == Success 'A'
    numberToChar "x41" == Success 'A'
    numberToChar "x4E" === Success 'N'
    numberToChar "x4e" === Success 'N'
    numberToChar "Haskell" == Exception "..."
    numberToChar "" == Exception "..."
    numberToChar "89439085908539082" == Exception "..."
    
    It's safe to use that for arbitrary big number strings, since we abort parsing as soon as possible.
    numberToChar (repeat '1') == Exception "..."
    

  10. numberToChar :: String -> Exceptional String Char

    xml-basic Text.XML.Basic.Entity

    Lookup a numeric entity, the leading '#' must have already been removed.

    numberToChar "65" == Success 'A'
    numberToChar "x41" == Success 'A'
    numberToChar "x4E" === Success 'N'
    numberToChar "x4e" === Success 'N'
    numberToChar "Haskell" == Exception "..."
    numberToChar "" == Exception "..."
    numberToChar "89439085908539082" == Exception "..."
    
    It's safe to use that for arbitrary big number strings, since we abort parsing as soon as possible.
    numberToChar (repeat '1') == Exception "..."
    

Page 86 of many | Previous | Next