-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New lint: unused_enumerate_value
#14443
base: master
Are you sure you want to change the base?
Conversation
f99f935
to
5428c6b
Compare
Ideally we should also check if the arbitrary type implements impl ExactSizeIterator, the trait isn't very well known. |
Emm.. I doubt it because |
In that case, we could just emit a warning if it's not coming from a ExactSizeIterator. I don't think we'll get much use if we limit the lint to just the trait. |
79ce2bf
to
81c7daa
Compare
Updated. Now arbitrary type is covered. |
@blyxyas does this look good now? |
for (i, _) in iter.enumerate()
can be replaced withfor i in 0..iter.len()
if the iterator implementsExactSizeIterator
.Closes #14430
changelog: [
unused_enumerate_value
]: new lint