-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #3662 - mikerite:fix-498, r=oli-obk
Fix `map_clone` bad suggestion `cloned` requires that the elements of the iterator must be references. This change determines if that is the case by examining the type of the closure argument and suggesting `.cloned` only if it is a reference. When the closure argument is not a reference, it suggests removing the `map` call instead. A minor problem with this change is that the new check sometimes overlaps with the `clone_on_copy` lint. Fixes #498
- Loading branch information
Showing
4 changed files
with
81 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,23 @@ | ||
// run-rustfix | ||
#![warn(clippy::all, clippy::pedantic)] | ||
#![allow(clippy::iter_cloned_collect)] | ||
#![allow(clippy::clone_on_copy)] | ||
#![allow(clippy::missing_docs_in_private_items)] | ||
|
||
fn main() { | ||
let _: Vec<i8> = vec![5_i8; 6].iter().cloned().collect(); | ||
let _: Vec<String> = vec![String::new()].iter().cloned().collect(); | ||
let _: Vec<u32> = vec![42, 43].iter().cloned().collect(); | ||
let _: Option<u64> = Some(Box::new(16)).map(|b| *b); | ||
|
||
// Don't lint these | ||
let v = vec![5_i8; 6]; | ||
let a = 0; | ||
let b = &a; | ||
let _ = v.iter().map(|_x| *b); | ||
let _ = v.iter().map(|_x| a.clone()); | ||
let _ = v.iter().map(|&_x| a); | ||
|
||
// Issue #498 | ||
let _ = std::env::args(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,23 @@ | ||
// run-rustfix | ||
#![warn(clippy::all, clippy::pedantic)] | ||
#![allow(clippy::iter_cloned_collect)] | ||
#![allow(clippy::clone_on_copy)] | ||
#![allow(clippy::missing_docs_in_private_items)] | ||
|
||
fn main() { | ||
let _: Vec<i8> = vec![5_i8; 6].iter().map(|x| *x).collect(); | ||
let _: Vec<String> = vec![String::new()].iter().map(|x| x.clone()).collect(); | ||
let _: Vec<u32> = vec![42, 43].iter().map(|&x| x).collect(); | ||
let _: Option<u64> = Some(Box::new(16)).map(|b| *b); | ||
|
||
// Don't lint these | ||
let v = vec![5_i8; 6]; | ||
let a = 0; | ||
let b = &a; | ||
let _ = v.iter().map(|_x| *b); | ||
let _ = v.iter().map(|_x| a.clone()); | ||
let _ = v.iter().map(|&_x| a); | ||
|
||
// Issue #498 | ||
let _ = std::env::args().map(|v| v.clone()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,28 @@ | ||
error: You are using an explicit closure for cloning elements | ||
--> $DIR/map_clone.rs:7:22 | ||
--> $DIR/map_clone.rs:8:22 | ||
| | ||
LL | let _: Vec<i8> = vec![5_i8; 6].iter().map(|x| *x).collect(); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider calling the dedicated `cloned` method: `vec![5_i8; 6].iter().cloned()` | ||
| | ||
= note: `-D clippy::map-clone` implied by `-D warnings` | ||
|
||
error: You are using an explicit closure for cloning elements | ||
--> $DIR/map_clone.rs:8:26 | ||
--> $DIR/map_clone.rs:9:26 | ||
| | ||
LL | let _: Vec<String> = vec![String::new()].iter().map(|x| x.clone()).collect(); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider calling the dedicated `cloned` method: `vec![String::new()].iter().cloned()` | ||
|
||
error: You are using an explicit closure for cloning elements | ||
--> $DIR/map_clone.rs:9:23 | ||
--> $DIR/map_clone.rs:10:23 | ||
| | ||
LL | let _: Vec<u32> = vec![42, 43].iter().map(|&x| x).collect(); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider calling the dedicated `cloned` method: `vec![42, 43].iter().cloned()` | ||
|
||
error: aborting due to 3 previous errors | ||
error: You are needlessly cloning iterator elements | ||
--> $DIR/map_clone.rs:22:29 | ||
| | ||
LL | let _ = std::env::args().map(|v| v.clone()); | ||
| ^^^^^^^^^^^^^^^^^^^ help: Remove the map call | ||
|
||
error: aborting due to 4 previous errors | ||
|