conduit-1.0.9.3: Streaming data processing library.
Data.Conduit.Util
Contents
Description
Various utility functions versions of conduit.
conduit
Synopsis
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