mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
38 lines
1.7 KiB
Text
38 lines
1.7 KiB
Text
error: called `iter().cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable
|
|
--> $DIR/iter_cloned_collect.rs:8:27
|
|
|
|
|
LL | let v2: Vec<isize> = v.iter().cloned().collect();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.to_vec()`
|
|
|
|
|
= note: `-D clippy::iter-cloned-collect` implied by `-D warnings`
|
|
|
|
error: called `iter().cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable
|
|
--> $DIR/iter_cloned_collect.rs:13:38
|
|
|
|
|
LL | let _: Vec<isize> = vec![1, 2, 3].iter().cloned().collect();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.to_vec()`
|
|
|
|
error: called `iter().cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable
|
|
--> $DIR/iter_cloned_collect.rs:18:24
|
|
|
|
|
LL | .to_bytes()
|
|
| ________________________^
|
|
LL | | .iter()
|
|
LL | | .cloned()
|
|
LL | | .collect();
|
|
| |______________________^ help: try: `.to_vec()`
|
|
|
|
error: called `iter().cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable
|
|
--> $DIR/iter_cloned_collect.rs:26:24
|
|
|
|
|
LL | let _: Vec<_> = arr.iter().cloned().collect();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.to_vec()`
|
|
|
|
error: called `iter().copied().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable
|
|
--> $DIR/iter_cloned_collect.rs:29:26
|
|
|
|
|
LL | let _: Vec<isize> = v.iter().copied().collect();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.to_vec()`
|
|
|
|
error: aborting due to 5 previous errors
|
|
|