We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b0014e + 8d954fa commit 12ab323Copy full SHA for 12ab323
library/core/src/iter/traits/iterator.rs
@@ -79,11 +79,6 @@ fn _assert_is_object_safe(_: &dyn Iterator<Item = ()>) {}
79
_Self = "std::string::String",
80
label = "`{Self}` is not an iterator; try calling `.chars()` or `.bytes()`"
81
),
82
- on(
83
- _Self = "[]",
84
- label = "arrays do not yet implement `IntoIterator`; try using `std::array::IntoIter::new(arr)`",
85
- note = "see <https://github.com/rust-lang/rust/pull/65819> for more details"
86
- ),
87
on(
88
_Self = "{integral}",
89
note = "if you want to iterate between `start` until a value `end`, use the exclusive range \
0 commit comments