Skip to content
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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

profetia
Copy link
Contributor

for (i, _) in iter.enumerate() can be replaced with for i in 0..iter.len() if the iterator implements ExactSizeIterator.

Closes #14430

changelog: [unused_enumerate_value]: new lint

@rustbot
Copy link
Collaborator

rustbot commented Mar 20, 2025

r? @blyxyas

rustbot has assigned @blyxyas.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties label Mar 20, 2025
@profetia profetia force-pushed the issue14430 branch 2 times, most recently from f99f935 to 5428c6b Compare March 20, 2025 05:43
@blyxyas
Copy link
Member

blyxyas commented Mar 23, 2025

Ideally we should also check if the arbitrary type implements .len() as a method, wouldn't we? Search, while not the best regex for looking this up, we can see that it's a very common pattern to implement .len() directly on the struct, without implementing the trait.

impl ExactSizeIterator, the trait isn't very well known.

@profetia
Copy link
Contributor Author

profetia commented Mar 23, 2025

Emm.. I doubt it because len does not belongs to any trait in the std, so the len implemented by a user-defined type may not has the sematics of what we intended here.

@blyxyas
Copy link
Member

blyxyas commented Mar 23, 2025

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.

@profetia profetia force-pushed the issue14430 branch 2 times, most recently from 79ce2bf to 81c7daa Compare March 24, 2025 09:41
@profetia
Copy link
Contributor Author

Updated. Now arbitrary type is covered.

@Snowiiii
Copy link

@blyxyas does this look good now?

@rustbot

This comment has been minimized.

@rustbot rustbot added S-waiting-on-author Status: This is awaiting some action from the author. (Use `@rustbot ready` to update this status) and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties labels Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-author Status: This is awaiting some action from the author. (Use `@rustbot ready` to update this status)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Unneded iter for loop
4 participants