-
Notifications
You must be signed in to change notification settings - Fork 2k
Implement chunk_by operation #14410
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
Implement chunk_by operation #14410
Conversation
|
Hi, thank you for the contribution! |
|
I think this is a good addition but I think the Rust name (would be Plus we already have the |
IanManske
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR! Just some notes:
The type specification is more detailed, and now allows for range inputs
IanManske
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR and all the fixes! Merging 🚀
Description
This pull requests implements a new
partition-bychunk-bycommand. The operation takes a closure and partitions the input list into sublists based on the return value of the closure.group-byoperation #14149Examples, tests and and documentation were added accordingly.