2019-04-15 21:32:39 +00:00
|
|
|
error: You are using an explicit closure for copying elements
|
|
|
|
--> $DIR/map_clone.rs:10:22
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: Vec<i8> = vec![5_i8; 6].iter().map(|x| *x).collect();
|
2019-04-15 21:32:39 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider calling the dedicated `copied` method: `vec![5_i8; 6].iter().copied()`
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::map-clone` implied by `-D warnings`
|
2018-10-02 13:13:43 +00:00
|
|
|
|
|
|
|
error: You are using an explicit closure for cloning elements
|
2019-04-15 21:32:39 +00:00
|
|
|
--> $DIR/map_clone.rs:11:26
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: Vec<String> = vec![String::new()].iter().map(|x| x.clone()).collect();
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider calling the dedicated `cloned` method: `vec![String::new()].iter().cloned()`
|
2018-10-02 13:13:43 +00:00
|
|
|
|
2019-04-15 21:32:39 +00:00
|
|
|
error: You are using an explicit closure for copying elements
|
|
|
|
--> $DIR/map_clone.rs:12:23
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: Vec<u32> = vec![42, 43].iter().map(|&x| x).collect();
|
2019-04-15 21:32:39 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider calling the dedicated `copied` method: `vec![42, 43].iter().copied()`
|
2018-10-02 13:13:43 +00:00
|
|
|
|
2019-01-15 06:09:47 +00:00
|
|
|
error: You are needlessly cloning iterator elements
|
2019-04-15 21:32:39 +00:00
|
|
|
--> $DIR/map_clone.rs:24:29
|
2019-01-15 06:09:47 +00:00
|
|
|
|
|
|
|
|
LL | let _ = std::env::args().map(|v| v.clone());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: Remove the map call
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2018-10-02 13:13:43 +00:00
|
|
|
|