8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Here are some functions i think would be great to add to the library:
dropLast(n)
n
dropWhile(predicate)
predicate(value)
true
enumerate
value
[index, value]
find(predicate)
nth(n)
Additions for higher order functionality:
zip( iterators[] )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Here are some functions i think would be great to add to the library:
dropLast(n)
: buffer the lastn
values and once the iterator completes, drop them. Release the rest on the fly.dropWhile(predicate)
: skip values untilpredicate(value)
returnstrue
enumerate
: maps inputvalue
to[index, value]
find(predicate)
: drops values untilpredicate(value)
returnstrue
, then yields that single value and endsnth(n)
: drops values until then
th value is reached then yields that single value and endsAdditions for higher order functionality:
zip( iterators[] )
: normal zip functionality. yields arrays containing values from each iterator until all iterators end.The text was updated successfully, but these errors were encountered: