rust/tests/ui/needless_collect.stderr

29 lines
1.1 KiB
Text
Raw Normal View History

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