mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
41 lines
1.8 KiB
Text
41 lines
1.8 KiB
Text
error: it is more concise to loop over containers instead of using explicit iteration methods
|
|
--> tests/ui/explicit_into_iter_loop.rs:10:18
|
|
|
|
|
LL | for _ in iterator.into_iter() {}
|
|
| ^^^^^^^^^^^^^^^^^^^^ help: to write this more concisely, try: `iterator`
|
|
|
|
|
= note: `-D clippy::explicit-into-iter-loop` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::explicit_into_iter_loop)]`
|
|
|
|
error: it is more concise to loop over containers instead of using explicit iteration methods
|
|
--> tests/ui/explicit_into_iter_loop.rs:23:14
|
|
|
|
|
LL | for _ in t.into_iter() {}
|
|
| ^^^^^^^^^^^^^ help: to write this more concisely, try: `&t`
|
|
|
|
error: it is more concise to loop over containers instead of using explicit iteration methods
|
|
--> tests/ui/explicit_into_iter_loop.rs:26:14
|
|
|
|
|
LL | for _ in r.into_iter() {}
|
|
| ^^^^^^^^^^^^^ help: to write this more concisely, try: `r`
|
|
|
|
error: it is more concise to loop over containers instead of using explicit iteration methods
|
|
--> tests/ui/explicit_into_iter_loop.rs:34:14
|
|
|
|
|
LL | for _ in mr.into_iter() {}
|
|
| ^^^^^^^^^^^^^^ help: to write this more concisely, try: `&*mr`
|
|
|
|
error: it is more concise to loop over containers instead of using explicit iteration methods
|
|
--> tests/ui/explicit_into_iter_loop.rs:46:14
|
|
|
|
|
LL | for _ in u.into_iter() {}
|
|
| ^^^^^^^^^^^^^ help: to write this more concisely, try: `&mut u`
|
|
|
|
error: it is more concise to loop over containers instead of using explicit iteration methods
|
|
--> tests/ui/explicit_into_iter_loop.rs:49:14
|
|
|
|
|
LL | for _ in mr.into_iter() {}
|
|
| ^^^^^^^^^^^^^^ help: to write this more concisely, try: `&mut *mr`
|
|
|
|
error: aborting due to 6 previous errors
|
|
|