Closed LukasKalbertodt closed 5 years ago
I'm not sure how the coverage can decrease from this change :confused:
I'm not sure how the coverage can decrease from this change 😕
Well it is just -0.05% so I personally don't care. Thank you for the PR!
an_array.into_iter()
currently just works because of the autoref feature, which then calls<[T] as IntoIterator>::into_iter
. But in the future, arrays will implementIntoIterator
, too. In order to avoid problems in the future, the call is replaced byiter()
which is shorter and more explicit.A crater run showed that your crate is affected by a potential future change. See https://github.com/rust-lang/rust/pull/65819 for more information.