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.
pattern
Pseudo_AF_RTIP :: Familynetwork Network.Socket Help Identify RTIP packets
pattern
Pseudo_AF_XTP :: Familynetwork Network.Socket eXpress Transfer Protocol (no AF)
-
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. -
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.
type
Parsec s u = ParsecT s u Identityparsec Text.Parsec No documentation available.
data
ParsecT s u (m :: Type -> Type) aparsec 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.
type
Parser = Parsec ByteString ()parsec Text.Parsec.ByteString No documentation available.
type
Parser = Parsec ByteString ()parsec Text.Parsec.ByteString.Lazy No documentation available.
-
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.
Postfix :: ParsecT s u m (a -> a) -> Operator s u (m :: Type -> Type) aparsec Text.Parsec.Expr No documentation available.