conduit icon indicating copy to clipboard operation
conduit copied to clipboard

A streaming data library

Results 46 conduit issues
Sort by recently updated
recently updated
newest added

The main primitive for exception handling in conduit (I think) is ``` haskell bracketP :: MonadResource m => IO a -> (a -> IO ()) -> (a -> ConduitM i...

Discussed with @ndmitchell via email, opening an issue to track this. It would be useful to have an operator |$| for common cases of `ZipSink`. However, it's unclear what the...

Don't merge; this is missing changelog updates and documentation. I just thought these tests could address @snoyberg's [comment](https://github.com/snoyberg/conduit/issues/205#issuecomment-87275036) about not splitting correctly when the input is chunked. This test in...

Troubleshooting my own program, I stumbled upon another instance of memory leak. When you call twice a function which ignores its parameter, and the function runs a conduit, it leaks...

I'm not sure whether this is the right place to ask, but I'd like to have your help. When a conduit is run in an `IO` monad and it is...

In a recent Stack Overflow question, Kwobny asked why `.|` was `infixr`. The potential "performance issue" raised in that question wasn't very compelling (i.e., so what if `((...((c1 .| c2)...