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. ZipConduit :: ConduitT i o m r -> ZipConduit i o (m :: Type -> Type) r

    conduit Data.Conduit

    No documentation available.

  2. getZipConduit :: ZipConduit i o (m :: Type -> Type) r -> ConduitT i o m r

    conduit Data.Conduit

    No documentation available.

  3. runConduit :: Monad m => ConduitT () Void m r -> m r

    conduit Data.Conduit

    Run a pipeline until processing completes. Since 1.2.1

  4. runConduitPure :: ConduitT () Void Identity r -> r

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

  5. runConduitRes :: MonadUnliftIO m => ConduitT () Void (ResourceT m) r -> m r

    conduit Data.Conduit

    Run a pipeline which acquires resources with ResourceT, and then run the ResourceT transformer. This is equivalent to runResourceT . runConduit.

  6. sealConduitT :: forall i o (m :: Type -> Type) r . ConduitT i o m r -> SealedConduitT i o m r

    conduit Data.Conduit

    No documentation available.

  7. sequenceConduits :: forall f (m :: Type -> Type) i o r . (Traversable f, Monad m) => f (ConduitT i o m r) -> ConduitT i o m (f r)

    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

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

    conduit Data.Conduit

    No documentation available.

  9. newtype SealedConduitT i o (m :: Type -> Type) r

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

  10. SealedConduitT :: Pipe i i o () m r -> SealedConduitT i o (m :: Type -> Type) r

    conduit Data.Conduit.Internal

    No documentation available.

Page 6 of many | Previous | Next