Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. package optparse-enum

    An enum-text based toolkit for optparse-applicative Please see the README on GitHub at https://github.com/cdornan/optparse-enum#readme

  2. enumArgP :: EnumText a => MetaVar -> Parser a

    optparse-enum Text.Enum.Optparse

    parsing an EnumText argument

  3. enumOptP :: EnumText a => FlagChar -> MetaVar -> Parser a

    optparse-enum Text.Enum.Optparse

    parsing an EnumText option

  4. enumSwitchesP :: EnumText a => Parser a

    optparse-enum Text.Enum.Optparse

    generate mutually exclusive switches based on EnumText a

  5. shortEnumSwitchesP :: EnumText a => (a -> Maybe FlagChar) -> Parser a

    optparse-enum Text.Enum.Optparse

    generate mutually exclusive switches based on EnumText a, with some short swich options as specified by the argument function

  6. package parsec-numeric

    Parsec combinators for parsing Haskell numeric types. Please see README.md

  7. hexnum :: forall i s (m :: Type -> Type) u . (Integral i, Stream s m Char) => ParsecT s u m i

    parsec-numeric Text.ParserCombinators.Parsec.Numeric

    parse a hexadecimal number

  8. zeroNumFloat :: forall i f s (m :: Type -> Type) u . (Integral i, Floating f, Stream s m Char) => ParsecT s u m (Either i f)

    parsec-numeric Text.ParserCombinators.Parsec.Numeric

    parse any hexadecimal, octal, decimal or floating point number following a zero

  9. zeroNumFract :: forall i f s (m :: Type -> Type) u . (Integral i, Fractional f, Stream s m Char) => ParsecT s u m (Either i f)

    parsec-numeric Text.ParserCombinators.Parsec.Numeric

    parse any hexadecimal, octal, decimal or fractional number following a zero

  10. zeroNumber :: forall i s (m :: Type -> Type) u . (Integral i, Stream s m Char) => ParsecT s u m i

    parsec-numeric Text.ParserCombinators.Parsec.Numeric

    parse a nat syntactically starting with a zero zeroNumber :: Integral i => ParsecT s u m i

Page 736 of many | Previous | Next