summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/filter_map_next_fixable.stderr
blob: a9fc6abe88facbda0ab9009ee0063ed5d14a14db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: called `filter_map(..).next()` on an `Iterator`. This is more succinctly expressed by calling `.find_map(..)` instead
  --> $DIR/filter_map_next_fixable.rs:9:32
   |
LL |     let element: Option<i32> = a.iter().filter_map(|s| s.parse().ok()).next();
   |                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `a.iter().find_map(|s| s.parse().ok())`
   |
   = note: `-D clippy::filter-map-next` implied by `-D warnings`

error: called `filter_map(..).next()` on an `Iterator`. This is more succinctly expressed by calling `.find_map(..)` instead
  --> $DIR/filter_map_next_fixable.rs:22:26
   |
LL |     let _: Option<i32> = a.iter().filter_map(|s| s.parse().ok()).next();
   |                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `a.iter().find_map(|s| s.parse().ok())`

error: aborting due to 2 previous errors