rust-clippy/tests/ui/skip_while_next.stderr

24 lines
805 B
Text
Raw Normal View History

error: called `skip_while(<p>).next()` on an `Iterator`
2020-01-20 01:54:54 +00:00
--> $DIR/skip_while_next.rs:14:13
|
LL | let _ = v.iter().skip_while(|&x| *x < 0).next();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::skip-while-next` implied by `-D warnings`
= help: this is more succinctly expressed by calling `.find(!<p>)` instead
2020-01-20 01:54:54 +00:00
error: called `skip_while(<p>).next()` on an `Iterator`
2020-01-20 01:54:54 +00:00
--> $DIR/skip_while_next.rs:17:13
|
LL | let _ = v.iter().skip_while(|&x| {
| _____________^
LL | | *x < 0
LL | | }
LL | | ).next();
| |___________________________^
2020-01-20 12:07:31 +00:00
|
= help: this is more succinctly expressed by calling `.find(!<p>)` instead
2020-01-20 01:54:54 +00:00
error: aborting due to 2 previous errors