2018-08-31 22:26:04 +00:00
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:9: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
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:10:22
|
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-08-11 13:43:21 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `next().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
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:13: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
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:18:35
|
2018-08-31 22:14:33 +00:00
|
|
|
|
|
2021-05-20 10:30:31 +00:00
|
|
|
LL | sample.iter().map(|x| (x, x)).collect::<HashMap<_, _>>().is_empty();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `next().is_none()`
|
2018-08-30 03:01:24 +00:00
|
|
|
|
2021-05-20 10:30:31 +00:00
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:19:35
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | sample.iter().map(|x| (x, x)).collect::<BTreeMap<_, _>>().is_empty();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `next().is_none()`
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:26:19
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | sample.iter().collect::<LinkedList<_>>().len();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `count()`
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:27:19
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | sample.iter().collect::<LinkedList<_>>().is_empty();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `next().is_none()`
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:28:28
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | sample.iter().cloned().collect::<LinkedList<_>>().contains(&1);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `any(|x| x == 1)`
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:29:19
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | sample.iter().collect::<LinkedList<_>>().contains(&&1);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `any(|x| x == &1)`
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:32:19
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | sample.iter().collect::<BinaryHeap<_>>().len();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `count()`
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:33:19
|
2021-05-20 10:30:31 +00:00
|
|
|
|
|
|
|
|
LL | sample.iter().collect::<BinaryHeap<_>>().is_empty();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `next().is_none()`
|
|
|
|
|
2022-11-21 19:34:47 +00:00
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:38:27
|
2022-11-21 19:34:47 +00:00
|
|
|
|
|
|
|
|
LL | let _ = sample.iter().collect::<HashSet<_>>().is_empty();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `next().is_none()`
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:39:27
|
2022-11-21 19:34:47 +00:00
|
|
|
|
|
|
|
|
LL | let _ = sample.iter().collect::<HashSet<_>>().contains(&&0);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `any(|x| x == &0)`
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:61:27
|
2022-11-21 19:34:47 +00:00
|
|
|
|
|
|
|
|
LL | let _ = sample.iter().collect::<VecWrapper<_>>().is_empty();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `next().is_none()`
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:62:27
|
2022-11-21 19:34:47 +00:00
|
|
|
|
|
|
|
|
LL | let _ = sample.iter().collect::<VecWrapper<_>>().contains(&&0);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `any(|x| x == &0)`
|
|
|
|
|
2023-05-20 13:39:26 +00:00
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:66:40
|
2023-05-20 13:39:26 +00:00
|
|
|
|
|
|
|
|
LL | Vec::<u8>::new().extend((0..10).collect::<Vec<_>>());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: remove this call
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:67:20
|
2023-05-20 13:39:26 +00:00
|
|
|
|
|
|
|
|
LL | foo((0..10).collect::<Vec<_>>());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: remove this call
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:68:49
|
2023-05-20 13:39:26 +00:00
|
|
|
|
|
|
|
|
LL | bar((0..10).collect::<Vec<_>>(), (0..10).collect::<Vec<_>>());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: remove this call
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/needless_collect.rs:69:37
|
2023-05-20 13:39:26 +00:00
|
|
|
|
|
|
|
|
LL | baz((0..10), (), ('a'..='z').collect::<Vec<_>>())
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: remove this call
|
|
|
|
|
|
|
|
error: aborting due to 19 previous errors
|
2018-08-30 03:01:24 +00:00
|
|
|
|