Hoogle Search
Within LTS Haskell 24.36 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
optparse-applicative Options.Applicative.Types Result of execParserPure.
class Monad m =>
PrimMonad (m :: Type -> Type)conduit Conduit Class of monads which can perform primitive state-transformer actions.
type
Producer (m :: Type -> Type) o = forall i . () => ConduitT i o m ()conduit Data.Conduit Deprecated: Use ConduitT directly
data
Pipe l i o u (m :: Type -> Type) rconduit Data.Conduit.Internal The underlying datatype for all the types in this package. In has six type parameters:
- l is the type of values that may be left over from this Pipe. A Pipe with no leftovers would use Void here, and one with leftovers would use the same type as the i parameter. Leftovers are automatically provided to the next Pipe in the monadic chain.
- i is the type of values for this Pipe's input stream.
- o is the type of values for this Pipe's output stream.
- u is the result type from the upstream Pipe.
- m is the underlying monad.
- r is the result type.
PipeM :: m (Pipe l i o u m r) -> Pipe l i o u (m :: Type -> Type) rconduit Data.Conduit.Internal Require running of a monadic action to get the next Pipe.
type
Producer (m :: Type -> Type) o = forall i . () => ConduitT i o m ()conduit Data.Conduit.Internal Deprecated: Use ConduitT directly
-
http-client Network.HTTP.Client A function which generates successive chunks of a request body, provider a single empty bytestring when no more data is available. Since 0.1.0
-
http-client Network.HTTP.Client Define a HTTP proxy, consisting of a hostname and port number.
Proxy :: ByteString -> Int -> Proxyhttp-client Network.HTTP.Client No documentation available.
ProxyConnectException :: ByteString -> Int -> Status -> HttpExceptionContenthttp-client Network.HTTP.Client A non-200 status code was returned when trying to connect to the proxy server on the given host and port.