mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
47 lines
1.8 KiB
Text
47 lines
1.8 KiB
Text
error: called `skip(..).next()` on an iterator
|
|
--> tests/ui/iter_skip_next.rs:17:28
|
|
|
|
|
LL | let _ = some_vec.iter().skip(42).next();
|
|
| ^^^^^^^^^^^^^^^^ help: use `nth` instead: `.nth(42)`
|
|
|
|
|
= note: `-D clippy::iter-skip-next` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::iter_skip_next)]`
|
|
|
|
error: called `skip(..).next()` on an iterator
|
|
--> tests/ui/iter_skip_next.rs:18:36
|
|
|
|
|
LL | let _ = some_vec.iter().cycle().skip(42).next();
|
|
| ^^^^^^^^^^^^^^^^ help: use `nth` instead: `.nth(42)`
|
|
|
|
error: called `skip(..).next()` on an iterator
|
|
--> tests/ui/iter_skip_next.rs:19:20
|
|
|
|
|
LL | let _ = (1..10).skip(10).next();
|
|
| ^^^^^^^^^^^^^^^^ help: use `nth` instead: `.nth(10)`
|
|
|
|
error: called `skip(..).next()` on an iterator
|
|
--> tests/ui/iter_skip_next.rs:20:33
|
|
|
|
|
LL | let _ = &some_vec[..].iter().skip(3).next();
|
|
| ^^^^^^^^^^^^^^^ help: use `nth` instead: `.nth(3)`
|
|
|
|
error: called `skip(..).next()` on an iterator
|
|
--> tests/ui/iter_skip_next.rs:28:26
|
|
|
|
|
LL | let _: Vec<&str> = sp.skip(1).next().unwrap().split(' ').collect();
|
|
| ^^^^^^^^^^^^^^^ help: use `nth` instead: `.nth(1)`
|
|
|
|
error: called `skip(..).next()` on an iterator
|
|
--> tests/ui/iter_skip_next.rs:30:29
|
|
|
|
|
LL | let _: Vec<&str> = s.skip(1).next().unwrap().split(' ').collect();
|
|
| ^^^^^^^^^^^^^^^ help: use `nth` instead: `.nth(1)`
|
|
|
|
error: called `skip(..).next()` on an iterator
|
|
--> tests/ui/iter_skip_next.rs:36:29
|
|
|
|
|
LL | let _: Vec<&str> = s.skip(1).next().unwrap().split(' ').collect();
|
|
| ^^^^^^^^^^^^^^^ help: use `nth` instead: `.nth(1)`
|
|
|
|
error: aborting due to 7 previous errors
|
|
|