2018-08-31 22:26:04 +00:00
|
|
|
error: avoid using `collect()` when not needed
|
2020-06-09 14:36:01 +00:00
|
|
|
--> $DIR/needless_collect.rs:11:29
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let len = sample.iter().collect::<Vec<_>>().len();
|
2020-06-09 14:36:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `count()`
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-collect` implied by `-D warnings`
|
2018-08-30 03:01:24 +00:00
|
|
|
|
2018-08-31 22:26:04 +00:00
|
|
|
error: avoid using `collect()` when not needed
|
2020-06-09 14:36:01 +00:00
|
|
|
--> $DIR/needless_collect.rs:12:15
|
2018-09-04 03:50:24 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | if sample.iter().collect::<Vec<_>>().is_empty() {
|
2020-06-09 14:36:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `get(0).is_none()`
|
2018-08-30 03:01:24 +00:00
|
|
|
|
2018-08-31 22:26:04 +00:00
|
|
|
error: avoid using `collect()` when not needed
|
2020-06-09 14:36:01 +00:00
|
|
|
--> $DIR/needless_collect.rs:15:28
|
2018-08-31 22:14:33 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | sample.iter().cloned().collect::<Vec<_>>().contains(&1);
|
2020-06-09 14:36:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `any(|x| x == 1)`
|
2018-08-31 22:14:33 +00:00
|
|
|
|
2018-08-31 22:26:04 +00:00
|
|
|
error: avoid using `collect()` when not needed
|
2020-06-09 14:36:01 +00:00
|
|
|
--> $DIR/needless_collect.rs:16:35
|
2018-08-31 22:14:33 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | sample.iter().map(|x| (x, x)).collect::<HashMap<_, _>>().len();
|
2020-06-09 14:36:01 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `count()`
|
2018-08-30 03:01:24 +00:00
|
|
|
|
2018-08-31 22:14:33 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2018-08-30 03:01:24 +00:00
|
|
|
|