2021-01-14 16:36:36 -06:00
|
|
|
error: `find(..).map(..)` can be simplified as `find_map(..)`
|
|
|
|
|
--> $DIR/manual_find_map.rs:8:19
|
|
|
|
|
|
|
|
|
|
|
LL | let _ = (0..).find(|n| to_opt(*n).is_some()).map(|a| to_opt(a).unwrap());
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `find_map(|a| to_opt(a))`
|
|
|
|
|
|
|
|
|
|
|
= note: `-D clippy::manual-find-map` implied by `-D warnings`
|
|
|
|
|
|
|
|
|
|
error: `find(..).map(..)` can be simplified as `find_map(..)`
|
|
|
|
|
--> $DIR/manual_find_map.rs:11:19
|
|
|
|
|
|
|
|
|
|
|
LL | let _ = (0..).find(|&n| to_opt(n).is_some()).map(|a| to_opt(a).expect("hi"));
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `find_map(|a| to_opt(a))`
|
|
|
|
|
|
|
|
|
|
error: `find(..).map(..)` can be simplified as `find_map(..)`
|
|
|
|
|
--> $DIR/manual_find_map.rs:14:19
|
|
|
|
|
|
|
|
|
|
|
LL | let _ = (0..).find(|&n| to_res(n).is_ok()).map(|a| to_res(a).unwrap_or(1));
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `find_map(|a| to_res(a).ok())`
|
|
|
|
|
|
2022-06-02 00:57:08 +09:00
|
|
|
error: `find(..).map(..)` can be simplified as `find_map(..)`
|
|
|
|
|
--> $DIR/manual_find_map.rs:51:24
|
|
|
|
|
|
|
|
|
|
|
LL | let _ = vec.iter().find(|f| f.field.is_some()).map(|f| f.field.clone().unwrap());
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `find_map(|f| f.field.clone())`
|
|
|
|
|
|
|
|
|
|
error: `find(..).map(..)` can be simplified as `find_map(..)`
|
|
|
|
|
--> $DIR/manual_find_map.rs:56:24
|
|
|
|
|
|
|
|
|
|
|
LL | let _ = vec.iter().find(|f| f.field.is_ok()).map(|f| f.field.clone().unwrap());
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `find_map(|f| f.field.clone().ok())`
|
|
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2021-01-14 16:36:36 -06:00
|
|
|
|