Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. pattern Pseudo_AF_RTIP :: Family

    network Network.Socket

    Help Identify RTIP packets

  2. pattern Pseudo_AF_XTP :: Family

    network Network.Socket

    eXpress Transfer Protocol (no AF)

  3. module Text.Parsec

    This module includes everything you need to get started writing a parser. By default this module is set up to parse character data. If you'd like to parse the result of your own tokenizer you should start with the following imports:

    import Text.Parsec.Prim
    import Text.Parsec.Combinator
    
    Then you can implement your own version of satisfy on top of the tokenPrim primitive.

  4. data ParseError

    parsec Text.Parsec

    The abstract data type ParseError represents parse errors. It provides the source position (SourcePos) of the error and a list of error messages (Message). A ParseError can be returned by the function parse. ParseError is an instance of the Show and Eq classes.

  5. type Parsec s u = ParsecT s u Identity

    parsec Text.Parsec

    No documentation available.

  6. data ParsecT s u (m :: Type -> Type) a

    parsec Text.Parsec

    ParserT monad transformer and Parser type ParsecT s u m a is a parser with stream type s, user state type u, underlying monad m and return type a. Parsec is strict in the user state. If this is undesirable, simply use a data type like data Box a = Box a and the state type Box YourStateType to add a level of indirection.

  7. type Parser = Parsec ByteString ()

    parsec Text.Parsec.ByteString

    No documentation available.

  8. type Parser = Parsec ByteString ()

    parsec Text.Parsec.ByteString.Lazy

    No documentation available.

  9. data ParseError

    parsec Text.Parsec.Error

    The abstract data type ParseError represents parse errors. It provides the source position (SourcePos) of the error and a list of error messages (Message). A ParseError can be returned by the function parse. ParseError is an instance of the Show and Eq classes.

  10. Postfix :: ParsecT s u m (a -> a) -> Operator s u (m :: Type -> Type) a

    parsec Text.Parsec.Expr

    No documentation available.

Page 46 of many | Previous | Next