rust-clippy/tests/ui/unnecessary_fold.stderr

95 lines
3.9 KiB
Text
Raw Normal View History

error: this `.fold` can be written more succinctly using another method
2019-08-14 17:35:17 +00:00
--> $DIR/unnecessary_fold.rs:8:20
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | let _ = (0..3).fold(false, |acc, x| acc || x > 2);
2019-08-14 17:35:17 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `any(|x| x > 2)`
2018-10-06 16:18:06 +00:00
|
= note: `-D clippy::unnecessary-fold` implied by `-D warnings`
error: this `.fold` can be written more succinctly using another method
2019-08-14 17:35:17 +00:00
--> $DIR/unnecessary_fold.rs:10:20
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | let _ = (0..3).fold(true, |acc, x| acc && x > 2);
2019-08-14 17:35:17 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `all(|x| x > 2)`
error: this `.fold` can be written more succinctly using another method
2019-08-14 17:35:17 +00:00
--> $DIR/unnecessary_fold.rs:12:25
2018-10-06 16:18:06 +00:00
|
2019-01-13 19:03:22 +00:00
LL | let _: i32 = (0..3).fold(0, |acc, x| acc + x);
2019-08-14 17:35:17 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `sum()`
error: this `.fold` can be written more succinctly using another method
2019-08-14 17:35:17 +00:00
--> $DIR/unnecessary_fold.rs:14:25
|
2019-01-13 19:03:22 +00:00
LL | let _: i32 = (0..3).fold(1, |acc, x| acc * x);
2019-08-14 17:35:17 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `product()`
error: this `.fold` can be written more succinctly using another method
2019-08-14 17:35:17 +00:00
--> $DIR/unnecessary_fold.rs:19:41
|
2019-01-13 19:03:22 +00:00
LL | let _: bool = (0..3).map(|x| 2 * x).fold(false, |acc, x| acc || x > 2);
2019-08-14 17:35:17 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `any(|x| x > 2)`
2019-08-14 17:34:50 +00: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: this `.fold` can be written more succinctly using another method
--> $DIR/unnecessary_fold.rs:60:33
|
LL | assert_eq!(map.values().fold(0, |x, y| x + y), 0);
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `sum::<i32>()`
error: this `.fold` can be written more succinctly using another method
--> $DIR/unnecessary_fold.rs:63:30
|
LL | let _ = map.values().fold(0, |x, y| x + y);
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `sum::<i32>()`
error: this `.fold` can be written more succinctly using another method
--> $DIR/unnecessary_fold.rs:64:30
|
LL | let _ = map.values().fold(1, |x, y| x * y);
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `product::<i32>()`
error: this `.fold` can be written more succinctly using another method
--> $DIR/unnecessary_fold.rs:65:35
|
LL | let _: i32 = map.values().fold(0, |x, y| x + y);
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `sum()`
error: this `.fold` can be written more succinctly using another method
--> $DIR/unnecessary_fold.rs:66:35
|
LL | let _: i32 = map.values().fold(1, |x, y| x * y);
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `product()`
error: this `.fold` can be written more succinctly using another method
--> $DIR/unnecessary_fold.rs:67:31
|
LL | anything(map.values().fold(0, |x, y| x + y));
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `sum::<i32>()`
error: this `.fold` can be written more succinctly using another method
--> $DIR/unnecessary_fold.rs:68:31
|
LL | anything(map.values().fold(1, |x, y| x * y));
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `product::<i32>()`
error: this `.fold` can be written more succinctly using another method
--> $DIR/unnecessary_fold.rs:69:26
|
LL | num(map.values().fold(0, |x, y| x + y));
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `sum()`
error: this `.fold` can be written more succinctly using another method
--> $DIR/unnecessary_fold.rs:70:26
|
LL | num(map.values().fold(1, |x, y| x * y));
| ^^^^^^^^^^^^^^^^^^^^^ help: try: `product()`
error: aborting due to 15 previous errors