Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. ProxyProtocolRequired :: ProxyProtocol

    warp Network.Wai.Handler.Warp.Internal

    See setProxyProtocolRequired.

  2. newtype Poke

    blaze-builder Blaze.ByteString.Builder.Internal.Write

    Changing a sequence of bytes starting from the given pointer. Pokes are the most primitive buffer manipulation. In most cases, you don't use the explicitly but as part of a Write, which also tells how many bytes will be changed at most.

  3. Poke :: (Ptr Word8 -> IO (Ptr Word8)) -> Poke

    blaze-builder Blaze.ByteString.Builder.Internal.Write

    No documentation available.

  4. type Parsec e s = ParsecT e s Identity

    megaparsec Text.Megaparsec

    Parsec is a non-transformer variant of the more general ParsecT monad transformer.

  5. data ParsecT e s (m :: Type -> Type) a

    megaparsec Text.Megaparsec

    ParsecT e s m a is a parser with custom data component of error e, stream type s, underlying monad m and return type a.

  6. data PosState s

    megaparsec Text.Megaparsec

    A special kind of state that is used to calculate line/column positions on demand.

  7. PosState :: s -> Int -> SourcePos -> Pos -> String -> PosState s

    megaparsec Text.Megaparsec

    No documentation available.

  8. data ParseError s e

    megaparsec Text.Megaparsec.Error

    ParseError s e represents a parse error parametrized over the stream type s and the custom data e. Semigroup and Monoid instances of the data type allow us to merge parse errors from different branches of parsing. When merging two ParseErrors, the longest match is preferred; if positions are the same, custom data sets and collections of message items are combined. Note that fancy errors take precedence over trivial errors in merging.

  9. data ParseErrorBundle s e

    megaparsec Text.Megaparsec.Error

    A non-empty collection of ParseErrors equipped with PosState that allows us to pretty-print the errors efficiently and correctly.

  10. ParseErrorBundle :: NonEmpty (ParseError s e) -> PosState s -> ParseErrorBundle s e

    megaparsec Text.Megaparsec.Error

    No documentation available.

Page 72 of many | Previous | Next