]> git.lizzy.rs Git - rust.git/blob - tests/ui/unnecessary_fold.stderr
Auto merge of #4314 - chansuke:add-negation-to-is_empty, r=flip1995
[rust.git] / tests / ui / unnecessary_fold.stderr
1 error: this `.fold` can be written more succinctly using another method
2   --> $DIR/unnecessary_fold.rs:8:19
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:19
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:24
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:24
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:40
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: aborting due to 5 previous errors
34