Hoogle Search

Within LTS Haskell 24.38 (ghc-9.10.3)

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

  1. sequence :: forall (m :: Type -> Type) i o . Monad m => ConduitT i o m o -> ConduitT i o m ()

    conduit Data.Conduit.List

    Run a Pipe repeatedly, and output its result value downstream. Stops when no more input is available from upstream. Since 0.5.0

  2. data Request

    wai Network.Wai

    Information on the request sent by the client. This abstracts away the details of the underlying implementation.

  3. data RequestBodyLength

    wai Network.Wai

    The size of the request body. In the case of chunked bodies, the size will not be known.

  4. consumeRequestBodyLazy :: Request -> IO ByteString

    wai Network.Wai

    Synonym for lazyRequestBody. This function name is meant to signal the non-idempotent nature of lazyRequestBody.

  5. consumeRequestBodyStrict :: Request -> IO ByteString

    wai Network.Wai

    Synonym for strictRequestBody. This function name is meant to signal the non-idempotent nature of strictRequestBody.

  6. defaultRequest :: Request

    wai Network.Wai

    A default, blank request.

  7. getRequestBodyChunk :: Request -> IO ByteString

    wai Network.Wai

    Get the next chunk of the body. Returns empty when the body is fully consumed.

  8. ifRequest :: (Request -> Bool) -> Middleware -> Middleware

    wai Network.Wai

    Conditionally apply a Middleware

  9. lazyRequestBody :: Request -> IO ByteString

    wai Network.Wai

    Get the request body as a lazy ByteString. This uses lazy I/O under the surface, and therefore all typical warnings regarding lazy I/O apply. Note: Since this function consumes the request body, future calls to it will return the empty string.

  10. mapRequestHeaders :: (RequestHeaders -> RequestHeaders) -> Request -> Request

    wai Network.Wai

    Apply the provided function to the request header list of the Request.

Page 155 of many | Previous | Next