conduit-1.0.7.2: Streaming data processing library.

Safe HaskellNone

Data.Conduit.Util

Contents

Description

Various utility functions versions of conduit.

Synopsis

Misc

zip :: Monad m => Source m a -> Source m b -> Source m (a, b)Source

Combines two sources. The new source will stop producing once either source has been exhausted.

Since 0.3.0

zipSinks :: Monad m => Sink i m r -> Sink i m r' -> Sink i m (r, r')Source

Combines two sinks. The new sink will complete when both input sinks have completed.

Any leftovers are discarded.

Since 0.4.1