Hoogle Search

Within LTS Haskell 24.10 (ghc-9.10.2)

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

  1. unsealConduitT :: forall (m :: Type -> Type) i o r . Monad m => SealedConduitT i o m r -> ConduitT i o m r

    conduit Data.Conduit.Internal

    No documentation available.

  2. zipConduitApp :: forall (m :: Type -> Type) i o x y . Monad m => ConduitT i o m (x -> y) -> ConduitT i o m x -> ConduitT i o m y

    conduit Data.Conduit.Internal

    Since 1.0.17

  3. type StreamConduit i (m :: Type -> Type) o = StreamConduitT i o m ()

    conduit Data.Conduit.Internal.Fusion

    No documentation available.

  4. type StreamConduitT i o (m :: Type -> Type) r = Stream m i () -> Stream m o r

    conduit Data.Conduit.Internal.Fusion

    No documentation available.

  5. streamConduit :: forall i o (m :: Type -> Type) r . ConduitT i o m r -> (Stream m i () -> Stream m o r) -> ConduitWithStream i o m r

    conduit Data.Conduit.Internal.Fusion

    No documentation available.

  6. mkConduitGet :: forall (m :: Type -> Type) o . Monad m => ConduitErrorHandler m o -> Get o -> ConduitT ByteString o m ()

    cereal-conduit Data.Conduit.Cereal.Internal

    Construct a conduitGet with the specified ErrorHandler

  7. data CConduit i o (m :: Type -> Type) r

    stm-conduit Data.Conduit.Async

    A "concurrent conduit", in which the stages run in parallel with a buffering queue between them.

  8. data CFConduit i o (m :: Type -> Type) r

    stm-conduit Data.Conduit.Async

    A "concurrent conduit", in which the stages run in parallel with a buffering queue and possibly a disk file between them.

  9. runCConduit :: (CRunnable c, RunConstraints c m) => c () Void m r -> m r

    stm-conduit Data.Conduit.Async

    Execute a conduit concurrently. This is the concurrent equivalent of runConduit. The underlying monad must always be an instance of MonadUnliftIO. If the conduits is a CFConduit, it must additionally be a in instance of MonadResource.

  10. mergeConduits :: forall (mo :: Type -> Type) (mi :: Type -> Type) i o . (MonadIO mo, MonadUnliftIO mi) => [ConduitT i o (ResourceT mi) ()] -> Int -> ResourceT mi (ConduitT i o mo ())

    stm-conduit Data.Conduit.TMChan

    Deprecated: This method will dissapear in the next version.

Page 8 of many | Previous | Next