Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. unReadM :: ReadM a -> ReaderT String (Except ParseError) a

    optparse-applicative Options.Applicative.Types

    No documentation available.

  2. runReaderC :: forall (m :: Type -> Type) r i o res . Monad m => r -> ConduitT i o (ReaderT r m) res -> ConduitT i o m res

    conduit Data.Conduit.Lift

    Run ReaderT in the base monad Since 1.0.11

  3. type BodyReader = IO ByteString

    http-client Network.HTTP.Client

    An IO action that represents an incoming response body coming from the server. Data provided by this action has already been gunzipped and de-chunked, and respects any content-length headers present. The action gets a single chunk of data from the response body, or an empty bytestring if no more data is available. Since 0.4.0

  4. brRead :: BodyReader -> IO ByteString

    http-client Network.HTTP.Client

    Get a single chunk of data from the response body, or an empty bytestring if no more data is available. Note that in order to consume the entire request body, you will need to repeatedly call this function until you receive an empty ByteString as a result. Since 0.1.0

  5. brReadSome :: BodyReader -> Int -> IO ByteString

    http-client Network.HTTP.Client

    Continuously call brRead, building up a lazy ByteString until a chunk is constructed that is at least as many bytes as requested. Since 0.4.20

  6. type BodyReader = IO ByteString

    http-client Network.HTTP.Client.Internal

    An IO action that represents an incoming response body coming from the server. Data provided by this action has already been gunzipped and de-chunked, and respects any content-length headers present. The action gets a single chunk of data from the response body, or an empty bytestring if no more data is available. Since 0.4.0

  7. brRead :: BodyReader -> IO ByteString

    http-client Network.HTTP.Client.Internal

    Get a single chunk of data from the response body, or an empty bytestring if no more data is available. Note that in order to consume the entire request body, you will need to repeatedly call this function until you receive an empty ByteString as a result. Since 0.1.0

  8. brReadSome :: BodyReader -> Int -> IO ByteString

    http-client Network.HTTP.Client.Internal

    Continuously call brRead, building up a lazy ByteString until a chunk is constructed that is at least as many bytes as requested. Since 0.4.20

  9. connectionRead :: Connection -> IO ByteString

    http-client Network.HTTP.Client.Internal

    If no more data, return empty.

  10. connectionReadLine :: Maybe MaxHeaderLength -> Connection -> IO ByteString

    http-client Network.HTTP.Client.Internal

    No documentation available.

Page 459 of many | Previous | Next