Harendra Kumar
Harendra Kumar
On GHC-8.6.5, in a PR based on 5d096dfad ``` Failures: Streamly/Test/Unicode/Stream.hs:177:9: 1) Unicode.Stream, UTF8 - Encoding / Decoding, Arrays Streamly.Data.String.lines == Prelude.lines Assertion failed (after 766 tests): zipAsyncly Compose three...
We add the current threadId in the channel. Need to check if there are any issues when the main stream stops. Also, do we need another callback which can be...
See some discussion regarding this in #533. IIRC the problem is that if we have re-exported a module from streamly then we cannot use it from streamly-core package. GHC does...
The recursive directory listing APIs are inefficient as they list each directory and then use the produced paths to try to list the children. Instead we can use the inodes...
zipWith may be confused with zipping outputs rather than inputs.
Make it pollTap: ``` pollCounts :: (MonadAsync m) => Fold m a Int -> (Stream m Int -> m b) -> Stream m a -> Stream m a ``` Currently...