File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -37,8 +37,10 @@ Libraries
37
37
Android platforms when available.][81469]
38
38
- [`slice::IterMut<'_, T>` now implements `AsRef<[T]>`][82771]
39
39
- [Arrays of any length now implement `IntoIterator`.][84147]
40
- Currently `.into_iter()` will return `slice::Iter` (`Item=&T`), but
41
- this may change in a future edition to return `Item=T`.
40
+ Currently call `.into_iter()` as a method on an array will
41
+ return `impl Iterator<Item=&T>`, but this may change in a
42
+ future edition to change `Item` to `T`. Calling `IntoIterator::into_iter`
43
+ directly on arrays will provide `impl Iterator<Item=T>` as expected.
42
44
- [`NonZero<T>::{leading_zeros, trailing_zeros}` is now `const`.][84082]
43
45
- [`{f32, f64}::from_str` now parse and print special values
44
46
(`NaN`, `-0`) according to IEEE RFC 754.][78618]
You can’t perform that action at this time.
0 commit comments