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.
ZipConduit :: ConduitT i o m r -> ZipConduit i o (m :: Type -> Type) rconduit Data.Conduit No documentation available.
getZipConduit :: ZipConduit i o (m :: Type -> Type) r -> ConduitT i o m rconduit Data.Conduit No documentation available.
runConduit :: Monad m => ConduitT () Void m r -> m rconduit Data.Conduit Run a pipeline until processing completes. Since 1.2.1
runConduitPure :: ConduitT () Void Identity r -> rconduit Data.Conduit Run a pure pipeline until processing completes, i.e. a pipeline with Identity as the base monad. This is equivalient to runIdentity . runConduit.
runConduitRes :: MonadUnliftIO m => ConduitT () Void (ResourceT m) r -> m rconduit Data.Conduit Run a pipeline which acquires resources with ResourceT, and then run the ResourceT transformer. This is equivalent to runResourceT . runConduit.
sealConduitT :: forall i o (m :: Type -> Type) r . ConduitT i o m r -> SealedConduitT i o m rconduit Data.Conduit No documentation available.
-
conduit Data.Conduit Provide identical input to all of the Conduits and combine their outputs into a single stream. Implemented on top of ZipConduit, see that data type for more details. Since 1.0.17
-
conduit Data.Conduit No documentation available.
newtype
SealedConduitT i o (m :: Type -> Type) rconduit Data.Conduit.Internal In order to provide for efficient monadic composition, the ConduitT type is implemented internally using a technique known as the codensity transform. This allows for cheap appending, but makes one case much more expensive: partially running a ConduitT and that capturing the new state. This data type is the same as ConduitT, but does not use the codensity transform technique.
SealedConduitT :: Pipe i i o () m r -> SealedConduitT i o (m :: Type -> Type) rconduit Data.Conduit.Internal No documentation available.