rust/tests/ui/needless_collect.rs

18 lines
624 B
Rust
Raw Normal View History

2018-12-10 06:26:16 +08:00
use std::collections::{BTreeSet, HashMap, HashSet};
2018-09-01 06:14:33 +08:00
2018-09-04 11:50:24 +08:00
#[warn(clippy::needless_collect)]
#[allow(unused_variables, clippy::iter_cloned_collect)]
fn main() {
let sample = [1; 5];
let len = sample.iter().collect::<Vec<_>>().len();
if sample.iter().collect::<Vec<_>>().is_empty() {
// Empty
}
sample.iter().cloned().collect::<Vec<_>>().contains(&1);
2018-09-01 06:14:33 +08:00
sample.iter().map(|x| (x, x)).collect::<HashMap<_, _>>().len();
// Notice the `HashSet`--this should not be linted
sample.iter().collect::<HashSet<_>>().len();
// Neither should this
sample.iter().collect::<BTreeSet<_>>().len();
}