2021-02-24 07:02:51 -06:00
|
|
|
error: called `filter(..).next()` on an `Iterator`. This is more succinctly expressed by calling `.find(..)` instead
|
2023-07-27 06:40:22 -05:00
|
|
|
--> $DIR/methods_fixable.rs:9:13
|
2020-10-23 02:49:47 -05:00
|
|
|
|
|
|
|
|
LL | let _ = v.iter().filter(|&x| *x < 0).next();
|
2023-07-01 06:08:01 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `v.iter().find(|&x| *x < 0)`
|
2020-10-23 02:49:47 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::filter-next` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|