2021-03-12 08:30:50 -06:00
|
|
|
error: called `filter(..).next()` on an `Iterator`. This is more succinctly expressed by calling `.find(..)` instead
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/methods_fixable.rs:9:13
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
|
|
|
LL | let _ = v.iter().filter(|&x| *x < 0).next();
|
2023-07-17 03:19:29 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `v.iter().find(|&x| *x < 0)`
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
|
|
|
= note: `-D clippy::filter-next` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::filter_next)]`
|
2020-11-05 07:29:48 -06:00
|
|
|
|
2023-11-21 11:08:42 -06:00
|
|
|
error: aborting due to 1 previous error
|
2020-11-05 07:29:48 -06:00
|
|
|
|