2018-08-31 22:14:33 +00:00
|
|
|
use std::collections::{HashMap, HashSet, BTreeSet};
|
|
|
|
|
2018-08-30 03:01:24 +00:00
|
|
|
#[warn(clippy, needless_collect)]
|
|
|
|
#[allow(unused_variables, 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-08-31 22:14:33 +00: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();
|
2018-08-30 03:01:24 +00:00
|
|
|
}
|