-
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
Propose to exchange ranges only when it is safe to do so #14432
base: master
Are you sure you want to change the base?
Conversation
977ab28
to
5560c51
Compare
This could also be extended to situations where the ranges are used as an argument to a function/method call which accepts an
|
5560c51
to
184736f
Compare
Rebased on master |
Putting to draft, I want to double-check the lintcheck, it looks like we get some false negatives there. |
184736f
to
db80969
Compare
To avoid false positives, the `range_plus_one` and `range_minus_one` lints will restrict themselves to situations where the iterator types can be easily switched from exclusive to inclusive or vice-versa. This includes situations where the range is used as an iterator, or is used for indexing. Also, when the range is used as a function or method call argument and the parameter type is generic over traits implemented by both kind of ranges, the lint will trigger. On the other hand, assignments of the range to variables, including automatically typed ones or wildcards, will no longer trigger the lint. However, the cases where such an assignment would benefit from the lint are probably rare.
db80969
to
f532213
Compare
Much better. I added checking if the range to be modified is a method or function call argument, and if the target range would be suitable as well. @rustbot review |
To avoid false positives, the
range_plus_one
andrange_minus_one
lints will restrict themselves to situations where the iterator types can be easily switched from exclusive to inclusive or vice-versa. This includes situations where the range is used as an iterator, or is used for indexing.On the other hand, assignments of the range to variables, including automatically typed ones or wildcards, will no longer trigger the lint. However, the cases where such an assignment would benefit from the lint are probably rare.
Fix #3307
changelog: [
range_plus_one
,range_minus_one
]: restrict lint to cases where it is safe to switch the range typeEdit: as a consequence, this led to the removal of three
#[expect(clippy::range_plus_one)]
in the Clippy sources to avoid those false positives.