rust/tests/ui/unnecessary_fold.stderr

41 lines
1.6 KiB
Plaintext
Raw Normal View History

error: this `.fold` can be written more succinctly using another method
2019-01-13 13:03:22 -06:00
--> $DIR/unnecessary_fold.rs:8:19
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let _ = (0..3).fold(false, |acc, x| acc || x > 2);
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.any(|x| x > 2)`
|
= note: `-D clippy::unnecessary-fold` implied by `-D warnings`
error: this `.fold` can be written more succinctly using another method
2019-01-13 13:03:22 -06:00
--> $DIR/unnecessary_fold.rs:10:19
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let _ = (0..3).fold(true, |acc, x| acc && x > 2);
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.all(|x| x > 2)`
error: this `.fold` can be written more succinctly using another method
2019-01-13 13:03:22 -06:00
--> $DIR/unnecessary_fold.rs:12:24
2018-10-06 11:18:06 -05:00
|
2019-01-13 13:03:22 -06:00
LL | let _: i32 = (0..3).fold(0, |acc, x| acc + x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.sum()`
error: this `.fold` can be written more succinctly using another method
2019-01-13 13:03:22 -06:00
--> $DIR/unnecessary_fold.rs:14:24
|
2019-01-13 13:03:22 -06:00
LL | let _: i32 = (0..3).fold(1, |acc, x| acc * x);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.product()`
error: this `.fold` can be written more succinctly using another method
2019-01-13 13:03:22 -06:00
--> $DIR/unnecessary_fold.rs:19:40
|
2019-01-13 13:03:22 -06:00
LL | let _: bool = (0..3).map(|x| 2 * x).fold(false, |acc, x| acc || x > 2);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.any(|x| x > 2)`
2019-08-14 12:34:50 -05:00
error: this `.fold` can be written more succinctly using another method
--> $DIR/unnecessary_fold.rs:49:10
|
LL | .fold(false, |acc, x| acc || x > 2);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `any(|x| x > 2)`
error: aborting due to 6 previous errors