Hoogle Search
Within LTS Haskell 24.50 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
conduit Data.Conduit.Internal Coalesce all values yielded by all of the Sources. Implemented on top of ZipSource and as such, it exhibits the same short-circuiting behavior as ZipSource. See that data type for more details. If you want to create a source that yields *all* values from multiple sources, use sequence_. Since 1.0.13
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.