rust/tests/ui/needless_collect.stderr

29 lines
1.1 KiB
Plaintext
Raw Normal View History

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