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

Stabilize FusedIterator #47463

Merged
merged 2 commits into from
Mar 6, 2018
Merged

Stabilize FusedIterator #47463

merged 2 commits into from
Mar 6, 2018

Commits on Mar 3, 2018

  1. core: Stabilize FusedIterator

    FusedIterator is a marker trait that promises that the implementing
    iterator continues to return `None` from `.next()` once it has returned
    `None` once (and/or `.next_back()`, if implemented).
    
    The effects of FusedIterator are already widely available through
    `.fuse()`, but with stable `FusedIterator`, stable Rust users can
    implement this trait for their iterators when appropriate.
    bluss committed Mar 3, 2018
    Configuration menu
    Copy the full SHA
    bc651ca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c7c23fe View commit details
    Browse the repository at this point in the history