Skip to content
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

Zip n sources #73

Merged
merged 2 commits into from
Oct 15, 2017
Merged

Zip n sources #73

merged 2 commits into from
Oct 15, 2017

Conversation

trxcllnt
Copy link
Member

@trxcllnt trxcllnt commented Oct 10, 2017

breaking change: zip selector moved to first arg, now takes a single "values" Array argument, instead of varargs:

// before:
zip((xs, ys, (x, y) => x + y)
// after:
zip(([x, y]) => x + y, xs, ys)

…ncIterables

breaking change: zip selectors now take a single "values" Array argument, instead of varargs
@mattpodwysocki mattpodwysocki merged commit 0c4d513 into master Oct 15, 2017
@trxcllnt trxcllnt deleted the zip-n-sources branch October 15, 2017 04:25
trxcllnt added a commit that referenced this pull request Oct 17, 2017
* feat(zip): make zip work on a variable number of source Iterables/AsyncIterables

breaking change: zip selectors now take a single "values" Array argument, instead of varargs

* test(zip): update zip tests for variable sources
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants