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.

  1. data ParserResult a

    optparse-applicative Options.Applicative.Types

    Result of execParserPure.

  2. class Monad m => PrimMonad (m :: Type -> Type)

    conduit Conduit

    Class of monads which can perform primitive state-transformer actions.

  3. type Producer (m :: Type -> Type) o = forall i . () => ConduitT i o m ()

    conduit Data.Conduit

    Deprecated: Use ConduitT directly

  4. data Pipe l i o u (m :: Type -> Type) r

    conduit 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.
    A basic intuition is that every Pipe produces a stream of output values (o), and eventually indicates that this stream is terminated by sending a result (r). On the receiving end of a Pipe, these become the i and u parameters. Since 0.5.0

  5. PipeM :: m (Pipe l i o u m r) -> Pipe l i o u (m :: Type -> Type) r

    conduit Data.Conduit.Internal

    Require running of a monadic action to get the next Pipe.

  6. type Producer (m :: Type -> Type) o = forall i . () => ConduitT i o m ()

    conduit Data.Conduit.Internal

    Deprecated: Use ConduitT directly

  7. type Popper = IO ByteString

    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

  8. data Proxy

    http-client Network.HTTP.Client

    Define a HTTP proxy, consisting of a hostname and port number.

  9. Proxy :: ByteString -> Int -> Proxy

    http-client Network.HTTP.Client

    No documentation available.

  10. ProxyConnectException :: ByteString -> Int -> Status -> HttpExceptionContent

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

Page 58 of many | Previous | Next