-
Notifications
You must be signed in to change notification settings - Fork 717
feat: introduce drop iterator combinator
#8420
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
Conversation
100f509 to
f7ec109
Compare
e51c04e to
8295c37
Compare
f7ec109 to
19556b4
Compare
|
Mathlib CI status (docs):
|
920f8c1 to
74ff77b
Compare
8295c37 to
3f60bb9
Compare
|
@ |
88dff86 to
25777a3
Compare
3f60bb9 to
0339cd2
Compare
|
Sorry for automatically notifying you all! During routine rebasing, I forgot to rebase the base branch, so that GitHub detected lots of changes. I have fixed that now, but I can't unsubscribe you again from the PR, unfortunately. |
This PR provides the iterator combinator
dropthat transforms any iterator into one that drops the firstnelements.Additionally, the PR removes the specialized
IteratorLoopinstance onTake. It currently does not have aLawfulIteratorLoopinstance, which needs to exist for the loop consumer lemmas to work. Having the specialized instance is low priority.