Harendra Kumar
Harendra Kumar
That way we can replace StreamK with Stream.
The implementation from RingArray needs to emulated in RingArray.Generic as well. See Array vs Array.Generic implementations to get an idea about the difference between Unboxed and generic array implementations.
Recursive traversal needs to keep track of device/inode to find loops when following symlinks.
[fsevents-macos-failure-job-logs.txt](https://github.com/user-attachments/files/21213710/fsevents-macos-failure-job-logs.txt)
Currently the Stream type does not support scalable cons or append, we need to use StreamK for that. It may be possible to do that if the stream representation has...
Flipped versions of folds are better when we need to define the fold inline. ``` primes :: MonadIO m => Fold m Int (MutArray Int) primes = flip Fold.foldlM' (pure...
See #3071. For convenience we add common folds in Array modules as well. The operations in Stream/Array are similar - and similar to the list module in base, so we...