-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Proposal] Operator: Chunk #104
Comments
There is some functional overlap with One question could be what to do with I'm thinking we can add The time-based variants don't have such luxury because they can't predict the size of the chunks upfront, which explains why we ended up choosing So, in conclusion, my proposal is to have: IO<T[]> Chunk<T>(IO<T> source, int size);
IO<T[]> Chunk<T>(IO<T> source, int size, int skip); where We should also do this work in http://github.com/dotnet/reactive for |
Link to .NET 6 Linq documentation
How it will work in Reaqtive:
The text was updated successfully, but these errors were encountered: