Found the following code in the wild ```rust let w: Vec<String> = vec_of_string .clone() .into_iter() .filter(|s| s.len() < 10) .collect(); ``` Not sure what other things should be linted, but at least filter and filter_map after a clone+into_iter