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.
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
-
wai Network.Wai Information on the request sent by the client. This abstracts away the details of the underlying implementation.
-
wai Network.Wai The size of the request body. In the case of chunked bodies, the size will not be known.
consumeRequestBodyLazy :: Request -> IO ByteStringwai Network.Wai Synonym for lazyRequestBody. This function name is meant to signal the non-idempotent nature of lazyRequestBody.
consumeRequestBodyStrict :: Request -> IO ByteStringwai Network.Wai Synonym for strictRequestBody. This function name is meant to signal the non-idempotent nature of strictRequestBody.
-
wai Network.Wai A default, blank request.
getRequestBodyChunk :: Request -> IO ByteStringwai Network.Wai Get the next chunk of the body. Returns empty when the body is fully consumed.
ifRequest :: (Request -> Bool) -> Middleware -> Middlewarewai Network.Wai Conditionally apply a Middleware
lazyRequestBody :: Request -> IO ByteStringwai 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.
mapRequestHeaders :: (RequestHeaders -> RequestHeaders) -> Request -> Requestwai Network.Wai Apply the provided function to the request header list of the Request.