]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/unnecessary_fold.stderr
Rollup merge of #101634 - aDotInTheVoid:rdj-test, r=CraftSpider
[rust.git] / src / tools / clippy / tests / ui / unnecessary_fold.stderr
1 error: this `.fold` can be written more succinctly using another method
2   --> $DIR/unnecessary_fold.rs:8:20
3    |
4 LL |     let _ = (0..3).fold(false, |acc, x| acc || x > 2);
5    |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `any(|x| x > 2)`
6    |
7    = note: `-D clippy::unnecessary-fold` implied by `-D warnings`
8
9 error: this `.fold` can be written more succinctly using another method
10   --> $DIR/unnecessary_fold.rs:10:20
11    |
12 LL |     let _ = (0..3).fold(true, |acc, x| acc && x > 2);
13    |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `all(|x| x > 2)`
14
15 error: this `.fold` can be written more succinctly using another method
16   --> $DIR/unnecessary_fold.rs:12:25
17    |
18 LL |     let _: i32 = (0..3).fold(0, |acc, x| acc + x);
19    |                         ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `sum()`
20
21 error: this `.fold` can be written more succinctly using another method
22   --> $DIR/unnecessary_fold.rs:14:25
23    |
24 LL |     let _: i32 = (0..3).fold(1, |acc, x| acc * x);
25    |                         ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `product()`
26
27 error: this `.fold` can be written more succinctly using another method
28   --> $DIR/unnecessary_fold.rs:19:41
29    |
30 LL |     let _: bool = (0..3).map(|x| 2 * x).fold(false, |acc, x| acc || x > 2);
31    |                                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `any(|x| x > 2)`
32
33 error: this `.fold` can be written more succinctly using another method
34   --> $DIR/unnecessary_fold.rs:49:10
35    |
36 LL |         .fold(false, |acc, x| acc || x > 2);
37    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `any(|x| x > 2)`
38
39 error: aborting due to 6 previous errors
40