-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Missing iterations #56883
Comments
Indeed, it looks like if you try to fold after you have just exhausted a copy of your original iterator, you are out of luck and will exit immediately with the initial value. |
bors
added a commit
that referenced
this issue
Dec 17, 2018
Remove Cycle::try_fold override Fixes #56883
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following code prints "foo" 4 times with stable and beta, but prints nothing with rustc 1.33.0-nightly (93c2f05 2018-12-15).
Replacing
once()
by something else or replacingfor_each()
withmap()
exhibits the same behaviour.The text was updated successfully, but these errors were encountered: