Hoogle Search

Within LTS Haskell 24.45 (ghc-9.10.3)

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

  1. ParserPrefs :: String -> Bool -> Bool -> Bool -> Backtracking -> Int -> Bool -> Bool -> Int -> ParserPrefs

    optparse-applicative Options.Applicative.Types

    No documentation available.

  2. data ParserResult a

    optparse-applicative Options.Applicative.Types

    Result of execParserPure.

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

    conduit Conduit

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

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

    conduit Data.Conduit

    Deprecated: Use ConduitT directly

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

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

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

    conduit Data.Conduit.Internal

    Deprecated: Use ConduitT directly

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

  9. data Proxy

    http-client Network.HTTP.Client

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

  10. Proxy :: ByteString -> Int -> Proxy

    http-client Network.HTTP.Client

    No documentation available.

Page 58 of many | Previous | Next