Skip to content

Commit

Permalink
Update outdated docs of array::IntoIter::new.
Browse files Browse the repository at this point in the history
  • Loading branch information
m-ou-se committed Sep 3, 2021
1 parent fbdff7f commit 5ea45f3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions library/core/src/array/iter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ impl<T, const N: usize> IntoIter<T, N> {
/// Creates a new iterator over the given `array`.
///
/// *Note*: this method might be deprecated in the future,
/// after [`IntoIterator` is implemented for arrays][array-into-iter].
/// since [`IntoIterator`] is now implemented for arrays.
///
/// # Examples
///
Expand All @@ -48,8 +48,13 @@ impl<T, const N: usize> IntoIter<T, N> {
/// // The type of `value` is an `i32` here, instead of `&i32`
/// let _: i32 = value;
/// }
///
/// // Since Rust 1.53, arrays implement IntoIterator directly:
/// for value in [1, 2, 3, 4, 5] {
/// // The type of `value` is an `i32` here, instead of `&i32`
/// let _: i32 = value;
/// }
/// ```
/// [array-into-iter]: https://github.com/rust-lang/rust/pull/65819
#[stable(feature = "array_value_iter", since = "1.51.0")]
pub fn new(array: [T; N]) -> Self {
// SAFETY: The transmute here is actually safe. The docs of `MaybeUninit`
Expand Down

0 comments on commit 5ea45f3

Please sign in to comment.