conduit-extra-0.1.7: Experimental helper functions for conduit.

Safe HaskellNone

Data.Conduit.Extra.Utils

Description

Functions currently under development which have not been moved to their final destination.

Synopsis

Documentation

takeWhile :: Monad m => (a -> Bool) -> Conduit a m aSource

dropRight :: Monad m => Int -> Conduit a m aSource

Remove the last N elements from the stream. This requires holding up to N elements in memory.