Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add split_into_chunks for ProgressLoggingFoldable
* Calling collect on a Foldable that is wrapped with withprogress to allow progress logging fails because ProgressLoggingFoldable is not iterable. * We add a method of split_into_chunks for when coll is a ProgressLoggingFodlable that partitions the foldable enclosed withing the ProgressLoggingFoldable struct, collects it, and then rewraps with a call to withprogress to allow logging to continue. * This allows the creation of transducers with progress logging and fixes JuliaFolds2/Transduces.jl#10
- Loading branch information