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.
Partial :: (i -> IResult i r) -> IResult i rattoparsec Data.Attoparsec.Internal.Types Supply this continuation with more input so that the parser can resume. To indicate that no more input is available, pass an empty string to the continuation. Note: if you get a Partial result, do not call its continuation more than once.
-
attoparsec Data.Attoparsec.Internal.Types No documentation available.
-
attoparsec Data.Attoparsec.Internal.Types No documentation available.
-
attoparsec Data.Attoparsec.Text No documentation available.
Partial :: (i -> IResult i r) -> IResult i rattoparsec Data.Attoparsec.Text Supply this continuation with more input so that the parser can resume. To indicate that no more input is available, pass an empty string to the continuation. Note: if you get a Partial result, do not call its continuation more than once.
-
attoparsec Data.Attoparsec.Text.Lazy No documentation available.
-
attoparsec Data.Attoparsec.Types The core parser type. This is parameterised over the type i of string being processed. This type is an instance of the following classes:
- Monad, where fail throws an exception (i.e. fails) with an error message.
- Functor and Applicative, which follow the usual definitions.
- MonadPlus, where mzero fails (with no error message) and mplus executes the right-hand parser if the left-hand one fails. When the parser on the right executes, the input is reset to the same state as the parser on the left started with. (In other words, attoparsec is a backtracking parser that supports arbitrary lookahead.)
- Alternative, which follows MonadPlus.
Partial :: (i -> IResult i r) -> IResult i rattoparsec Data.Attoparsec.Types Supply this continuation with more input so that the parser can resume. To indicate that no more input is available, pass an empty string to the continuation. Note: if you get a Partial result, do not call its continuation more than once.
type
Parser a = ZeptoT Identity aattoparsec Data.Attoparsec.Zepto No documentation available.
-
http-types Network.HTTP.Types No documentation available.