-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
[Merged by Bors] - Override size_hint for all Iterators and add ExactSizeIterator where applicable #1734
Conversation
I'm not a fan of implementing |
Good Point, I reworked the Implementations in For |
bors r+ |
Pull request successfully merged into main. Build succeeded: |
… applicable (bevyengine#1734) After bevyengine#1697 I looked at all other Iterators from Bevy and added overrides for `size_hint` where it wasn't done. Also implemented `ExactSizeIterator` where applicable.
… applicable (bevyengine#1734) After bevyengine#1697 I looked at all other Iterators from Bevy and added overrides for `size_hint` where it wasn't done. Also implemented `ExactSizeIterator` where applicable.
After #1697 I looked at all other Iterators from Bevy and added overrides for
size_hint
where it wasn't done.Also implemented
ExactSizeIterator
where applicable.