You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/rust-2024/intoiterator-box-slice.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ More information may be found in the tracking issue at <https://github.com/rust-
7
7
8
8
- Boxed slices implement [`IntoIterator`] in *all* editions.
9
9
- Calls to [`IntoIterator::into_iter`] are *hidden* in editions prior to 2024 when using method call syntax (i.e., `boxed_slice.into_iter()`). So, `boxed_slice.into_iter()` still resolves to `(&(*boxed_slice)).into_iter()` as it has before.
10
-
-`boxed_slice.into_iter()` changes meaning to be the call [`IntoIterator::into_iter`] in Rust 2024.
10
+
-`boxed_slice.into_iter()` changes meaning to call [`IntoIterator::into_iter`] in Rust 2024.
0 commit comments