]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/filter_map_next_fixable.stderr
Auto merge of #101969 - reez12g:issue-101306, r=reez12g
[rust.git] / src / tools / clippy / tests / ui / filter_map_next_fixable.stderr
1 error: called `filter_map(..).next()` on an `Iterator`. This is more succinctly expressed by calling `.find_map(..)` instead
2   --> $DIR/filter_map_next_fixable.rs:8:32
3    |
4 LL |     let element: Option<i32> = a.iter().filter_map(|s| s.parse().ok()).next();
5    |                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `a.iter().find_map(|s| s.parse().ok())`
6    |
7    = note: `-D clippy::filter-map-next` implied by `-D warnings`
8
9 error: aborting due to previous error
10