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.

  1. sequenceSources :: forall f (m :: Type -> Type) o . (Traversable f, Monad m) => f (ConduitT () o m ()) -> ConduitT () (f o) m ()

    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

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

  3. data Request

    wai Network.Wai

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

  4. data RequestBodyLength

    wai Network.Wai

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

  5. consumeRequestBodyLazy :: Request -> IO ByteString

    wai Network.Wai

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

  6. consumeRequestBodyStrict :: Request -> IO ByteString

    wai Network.Wai

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

  7. defaultRequest :: Request

    wai Network.Wai

    A default, blank request.

  8. getRequestBodyChunk :: Request -> IO ByteString

    wai Network.Wai

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

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

    wai Network.Wai

    Conditionally apply a Middleware

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

Page 155 of many | Previous | Next