iteratee
iteratee copied to clipboard
Iteratees for Cats
Updates [co.fs2:fs2-core](https://github.com/typelevel/fs2) from 3.1.5 to 3.1.6. [GitHub Release Notes](https://github.com/typelevel/fs2/releases/tag/v3.1.6) - [Changelog](https://github.com/typelevel/fs2/blob/master/CHANGELOG.md) - [Version Diff](https://github.com/typelevel/fs2/compare/v3.1.5...v3.1.6) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself....
In #455 the Scala.js tests in the tests module were failing on Scala 3, with some completely unhelpful messages: ``` [error] Error during tests: [error] io.iteratee.EvalIterateeTests [error] io.iteratee.TryEnumerateeTests [error] io.iteratee.IdIterateeTests...
- https://meta.plasm.us/posts/2016/01/08/yet-another-iteratee-library/ examples don't compile (with 0.17.0)
I'm working on a new iteratee-parsing module with iteratee-powered parser combinators, and I really want to be able to parse strings as streams of characters without representing chunks as sequences...
#171 addresses the main part of #166, but I'd also like to have converters allowing us to go between the iteratee abstractions and fs2's streams. I'm not sure exactly what...
In #168 for example the fact that we're only testing `FutureFileModule` (not `files.future`) allowed an initialization order bug to slip through. I think that's a somewhat exceptional case, and the...
@johnynek has several questions about performance on #129 that deserve a closer look, probably after #141 (which includes a Cats-0.8.0 reworking of #129) gets merged.
It would be nice to have something like `gatherMap` that would allow us to run a transformation in parallel over batches of items. I can imagine a method like this:...
See @johnynek's question [here](https://github.com/travisbrown/iteratee/pull/104/files#r75601250). > I wonder if combine is a better name here. Algebird used plus/sum but @non really does not like that except for explicitly"additive" (in name monoid)