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 by-value [T; N] iterator core::array::IntoIter #80470

Merged
merged 2 commits into from
Jan 31, 2021

Commits on Dec 29, 2020

  1. Stabilize by-value [T; N] iterator core::array::IntoIter

    Tracking issue: rust-lang#65798
    
    This is unblocked now that `min_const_generics` has been stabilized
    in rust-lang#79135.
    
    This PR does *not* include the corresponding `IntoIterator` impl,
    which is rust-lang#65819.
    Instead, an iterator can be constructed through the `new` method.
    
    `new` would become unnecessary when `IntoIterator` is implemented
    and might be deprecated then, although it will stay stable.
    SimonSapin committed Dec 29, 2020
    Configuration menu
    Copy the full SHA
    61c49d4 View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2021

  1. Add example to array::IntoIter::new’s doc-comment

    Co-authored-by: Ashley Mannix <kodraus@hey.com>
    SimonSapin and KodrAus committed Jan 21, 2021
    Configuration menu
    Copy the full SHA
    83d32b0 View commit details
    Browse the repository at this point in the history