-
Notifications
You must be signed in to change notification settings - Fork 13
feat: Implement transform.divide() #75 #88
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
base: dev
Are you sure you want to change the base?
Conversation
|
Hi @DaBestCode! Please rebase your branch from dev and push it to fix github workflows. |
8b8d5bd to
9d01b34
Compare
|
Hi @Smoren I have rebased and pushed the branch. Can you check if it passes the workflows. |
|
Hi @DaBestCode! Please fix issues in the review. |
|
Hi @Smoren I am so sorry I am fixing it. Please bare with me. |
|
@Smoren if you dont mind can you run this. I have removed the incorrect imports. |
|
Hi @DaBestCode |
|
Hi @DaBestCode |
…e, AsyncStream.divide
a8437a6 to
3569498
Compare
|
Hi @DaBestCode Can you please rebase your branch from master and resolve the conflicts? |
This PR adds support for dividing an iterable/async iterable into evenly sized chunks while preserving order. Implements the following methods:
transform.divide()
transform.divideAsync()
Stream.divide()
AsyncStream.divide()
Example Usage