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. Partial :: (i -> IResult i r) -> IResult i r

    attoparsec 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.

  2. newtype Pos

    attoparsec Data.Attoparsec.Internal.Types

    No documentation available.

  3. Pos :: Int -> Pos

    attoparsec Data.Attoparsec.Internal.Types

    No documentation available.

  4. type Parser = Parser Text

    attoparsec Data.Attoparsec.Text

    No documentation available.

  5. Partial :: (i -> IResult i r) -> IResult i r

    attoparsec 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.

  6. type Parser = Parser Text

    attoparsec Data.Attoparsec.Text.Lazy

    No documentation available.

  7. data Parser i a

    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.

  8. Partial :: (i -> IResult i r) -> IResult i r

    attoparsec 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.

  9. type Parser a = ZeptoT Identity a

    attoparsec Data.Attoparsec.Zepto

    No documentation available.

  10. PATCH :: StdMethod

    http-types Network.HTTP.Types

    No documentation available.

Page 38 of many | Previous | Next