2020-08-11 08:43:21 -05:00
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:8:39
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
LL | let indirect_iter = sample.iter().collect::<Vec<_>>();
|
|
|
|
| ^^^^^^^
|
|
|
|
LL | indirect_iter.into_iter().map(|x| (x, x + 1)).collect::<HashMap<_, _>>();
|
|
|
|
| ------------------------- the iterator could be used here instead
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-collect` implied by `-D warnings`
|
2021-03-12 08:30:50 -06:00
|
|
|
help: use the original Iterator instead of collecting it and then producing a new one
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
2021-08-11 09:21:33 -05:00
|
|
|
LL ~
|
|
|
|
LL ~ sample.iter().map(|x| (x, x + 1)).collect::<HashMap<_, _>>();
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:10:38
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
LL | let indirect_len = sample.iter().collect::<VecDeque<_>>();
|
|
|
|
| ^^^^^^^
|
|
|
|
LL | indirect_len.len();
|
|
|
|
| ------------------ the iterator could be used here instead
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
help: take the original Iterator's count instead of collecting it and finding the length
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
2021-08-11 09:21:33 -05:00
|
|
|
LL ~
|
|
|
|
LL ~ sample.iter().count();
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:12:40
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
LL | let indirect_empty = sample.iter().collect::<VecDeque<_>>();
|
|
|
|
| ^^^^^^^
|
|
|
|
LL | indirect_empty.is_empty();
|
|
|
|
| ------------------------- the iterator could be used here instead
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
help: check if the original Iterator has anything instead of collecting it and seeing if it's empty
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
2021-08-11 09:21:33 -05:00
|
|
|
LL ~
|
|
|
|
LL ~ sample.iter().next().is_none();
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:14:43
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
LL | let indirect_contains = sample.iter().collect::<VecDeque<_>>();
|
|
|
|
| ^^^^^^^
|
|
|
|
LL | indirect_contains.contains(&&5);
|
|
|
|
| ------------------------------- the iterator could be used here instead
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
help: check if the original Iterator contains an element instead of collecting then checking
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
2021-08-11 09:21:33 -05:00
|
|
|
LL ~
|
|
|
|
LL ~ sample.iter().any(|x| x == &5);
|
2020-08-11 08:43:21 -05:00
|
|
|
|
|
|
|
|
|
2020-10-28 17:36:07 -05:00
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:26:48
|
2020-10-28 17:36:07 -05:00
|
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
LL | let non_copy_contains = sample.into_iter().collect::<Vec<_>>();
|
|
|
|
| ^^^^^^^
|
|
|
|
LL | non_copy_contains.contains(&a);
|
|
|
|
| ------------------------------ the iterator could be used here instead
|
2020-10-28 17:36:07 -05:00
|
|
|
|
|
2021-03-12 08:30:50 -06:00
|
|
|
help: check if the original Iterator contains an element instead of collecting then checking
|
2020-10-28 17:36:07 -05:00
|
|
|
|
|
2021-08-11 09:21:33 -05:00
|
|
|
LL ~
|
|
|
|
LL ~ sample.into_iter().any(|x| x == a);
|
2020-10-28 17:36:07 -05:00
|
|
|
|
|
|
|
|
|
2021-05-06 04:51:22 -05:00
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:55:51
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
LL | let buffer: Vec<&str> = string.split('/').collect();
|
|
|
|
| ^^^^^^^
|
|
|
|
LL | buffer.len()
|
|
|
|
| ------------ the iterator could be used here instead
|
|
|
|
|
|
|
|
|
help: take the original Iterator's count instead of collecting it and finding the length
|
|
|
|
|
|
2021-08-11 09:21:33 -05:00
|
|
|
LL ~
|
|
|
|
LL ~ string.split('/').count()
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:60:55
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
LL | let indirect_len: VecDeque<_> = sample.iter().collect();
|
|
|
|
| ^^^^^^^
|
|
|
|
LL | indirect_len.len()
|
|
|
|
| ------------------ the iterator could be used here instead
|
|
|
|
|
|
|
|
|
help: take the original Iterator's count instead of collecting it and finding the length
|
|
|
|
|
|
2021-08-11 09:21:33 -05:00
|
|
|
LL ~
|
|
|
|
LL ~ sample.iter().count()
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:65:57
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
LL | let indirect_len: LinkedList<_> = sample.iter().collect();
|
|
|
|
| ^^^^^^^
|
|
|
|
LL | indirect_len.len()
|
|
|
|
| ------------------ the iterator could be used here instead
|
|
|
|
|
|
|
|
|
help: take the original Iterator's count instead of collecting it and finding the length
|
|
|
|
|
|
2021-08-11 09:21:33 -05:00
|
|
|
LL ~
|
|
|
|
LL ~ sample.iter().count()
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:70:57
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
LL | let indirect_len: BinaryHeap<_> = sample.iter().collect();
|
|
|
|
| ^^^^^^^
|
|
|
|
LL | indirect_len.len()
|
|
|
|
| ------------------ the iterator could be used here instead
|
|
|
|
|
|
|
|
|
help: take the original Iterator's count instead of collecting it and finding the length
|
|
|
|
|
|
2021-08-11 09:21:33 -05:00
|
|
|
LL ~
|
|
|
|
LL ~ sample.iter().count()
|
2021-05-06 04:51:22 -05:00
|
|
|
|
|
|
|
|
|
2022-06-13 09:27:26 -05:00
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:130:59
|
2022-06-13 09:27:26 -05:00
|
|
|
|
|
|
|
|
LL | let y: Vec<usize> = vec.iter().map(|k| k * k).collect();
|
|
|
|
| ^^^^^^^
|
|
|
|
...
|
|
|
|
LL | y.contains(&i);
|
|
|
|
| -------------- the iterator could be used here instead
|
|
|
|
|
|
|
|
|
help: check if the original Iterator contains an element instead of collecting then checking
|
|
|
|
|
|
|
|
|
LL ~
|
|
|
|
LL | let z: Vec<usize> = vec.iter().map(|k| k * k).collect();
|
|
|
|
LL | // Do lint
|
|
|
|
LL ~ vec.iter().map(|k| k * k).any(|x| x == i);
|
|
|
|
|
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:155:59
|
2022-06-13 09:27:26 -05:00
|
|
|
|
|
|
|
|
LL | let y: Vec<usize> = vec.iter().map(|k| k * k).collect();
|
|
|
|
| ^^^^^^^
|
|
|
|
...
|
|
|
|
LL | y.contains(&n);
|
|
|
|
| -------------- the iterator could be used here instead
|
|
|
|
|
|
|
|
|
help: check if the original Iterator contains an element instead of collecting then checking
|
|
|
|
|
|
|
|
|
LL ~
|
|
|
|
LL | let z: Vec<usize> = vec.iter().map(|k| k * k).collect();
|
|
|
|
LL | // Do lint
|
|
|
|
LL ~ vec.iter().map(|k| k * k).any(|x| x == n);
|
|
|
|
|
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:184:63
|
2022-06-13 09:27:26 -05:00
|
|
|
|
|
|
|
|
LL | let y: Vec<usize> = vec.iter().map(|k| k * k).collect();
|
|
|
|
| ^^^^^^^
|
|
|
|
...
|
|
|
|
LL | y.contains(&n);
|
|
|
|
| -------------- the iterator could be used here instead
|
|
|
|
|
|
|
|
|
help: check if the original Iterator contains an element instead of collecting then checking
|
|
|
|
|
|
|
|
|
LL ~
|
|
|
|
LL | let z: Vec<usize> = vec.iter().map(|k| k * k).collect();
|
|
|
|
LL | // Do lint
|
|
|
|
LL ~ vec.iter().map(|k| k * k).any(|x| x == n);
|
|
|
|
|
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:220:59
|
2022-06-13 09:27:26 -05:00
|
|
|
|
|
|
|
|
LL | let y: Vec<usize> = vec.iter().map(|k| k * k).collect();
|
|
|
|
| ^^^^^^^
|
|
|
|
...
|
|
|
|
LL | y.contains(&n);
|
|
|
|
| -------------- the iterator could be used here instead
|
|
|
|
|
|
|
|
|
help: check if the original Iterator contains an element instead of collecting then checking
|
|
|
|
|
|
|
|
|
LL ~
|
|
|
|
LL | let z: Vec<usize> = vec.iter().map(|k| k * k).collect();
|
|
|
|
LL | if n < 2 {
|
|
|
|
LL | // Do lint
|
|
|
|
LL ~ vec.iter().map(|k| k * k).any(|x| x == n);
|
|
|
|
|
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:245:26
|
2022-06-13 09:27:26 -05:00
|
|
|
|
|
|
|
|
LL | let w = v.iter().collect::<Vec<_>>();
|
|
|
|
| ^^^^^^^
|
|
|
|
LL | // Do lint
|
|
|
|
LL | for _ in 0..w.len() {
|
|
|
|
| ------- the iterator could be used here instead
|
|
|
|
|
|
|
|
|
help: take the original Iterator's count instead of collecting it and finding the length
|
|
|
|
|
|
|
|
|
LL ~
|
|
|
|
LL | // Do lint
|
|
|
|
LL ~ for _ in 0..v.iter().count() {
|
|
|
|
|
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:267:30
|
2022-06-13 09:27:26 -05:00
|
|
|
|
|
|
|
|
LL | let mut w = v.iter().collect::<Vec<_>>();
|
|
|
|
| ^^^^^^^
|
|
|
|
LL | // Do lint
|
|
|
|
LL | while 1 == w.len() {
|
|
|
|
| ------- the iterator could be used here instead
|
|
|
|
|
|
|
|
|
help: take the original Iterator's count instead of collecting it and finding the length
|
|
|
|
|
|
|
|
|
LL ~
|
|
|
|
LL | // Do lint
|
|
|
|
LL ~ while 1 == v.iter().count() {
|
|
|
|
|
|
|
|
|
|
|
|
|
error: avoid using `collect()` when not needed
|
2022-10-24 13:28:09 -05:00
|
|
|
--> $DIR/needless_collect_indirect.rs:289:30
|
2022-06-13 09:27:26 -05:00
|
|
|
|
|
|
|
|
LL | let mut w = v.iter().collect::<Vec<_>>();
|
|
|
|
| ^^^^^^^
|
|
|
|
LL | // Do lint
|
|
|
|
LL | while let Some(i) = Some(w.len()) {
|
|
|
|
| ------- the iterator could be used here instead
|
|
|
|
|
|
|
|
|
help: take the original Iterator's count instead of collecting it and finding the length
|
|
|
|
|
|
|
|
|
LL ~
|
|
|
|
LL | // Do lint
|
|
|
|
LL ~ while let Some(i) = Some(v.iter().count()) {
|
|
|
|
|
|
|
|
|
|
|
|
|
error: aborting due to 16 previous errors
|
2020-08-11 08:43:21 -05:00
|
|
|
|