2019-09-25 12:25:31 +00:00
|
|
|
// run-rustfix
|
|
|
|
|
2021-02-25 14:07:15 +00:00
|
|
|
#![allow(unused, clippy::suspicious_map, clippy::iter_count)]
|
2019-09-25 12:25:31 +00:00
|
|
|
|
2021-05-05 19:17:49 +00:00
|
|
|
use std::collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet, LinkedList};
|
2019-09-25 12:25:31 +00:00
|
|
|
|
|
|
|
#[warn(clippy::needless_collect)]
|
2020-08-08 16:13:43 +00:00
|
|
|
#[allow(unused_variables, clippy::iter_cloned_collect, clippy::iter_next_slice)]
|
2019-09-25 12:25:31 +00:00
|
|
|
fn main() {
|
|
|
|
let sample = [1; 5];
|
|
|
|
let len = sample.iter().count();
|
2020-08-08 16:13:43 +00:00
|
|
|
if sample.iter().next().is_none() {
|
2019-09-25 12:25:31 +00:00
|
|
|
// Empty
|
|
|
|
}
|
|
|
|
sample.iter().cloned().any(|x| x == 1);
|
2021-05-05 19:08:24 +00:00
|
|
|
// #7164 HashMap's and BTreeMap's `len` usage should not be linted
|
|
|
|
sample.iter().map(|x| (x, x)).collect::<HashMap<_, _>>().len();
|
|
|
|
sample.iter().map(|x| (x, x)).collect::<BTreeMap<_, _>>().len();
|
|
|
|
|
|
|
|
sample.iter().map(|x| (x, x)).next().is_none();
|
|
|
|
sample.iter().map(|x| (x, x)).next().is_none();
|
|
|
|
|
2019-09-25 12:25:31 +00:00
|
|
|
// Notice the `HashSet`--this should not be linted
|
|
|
|
sample.iter().collect::<HashSet<_>>().len();
|
|
|
|
// Neither should this
|
|
|
|
sample.iter().collect::<BTreeSet<_>>().len();
|
2021-05-05 19:17:49 +00:00
|
|
|
|
|
|
|
sample.iter().count();
|
|
|
|
sample.iter().next().is_none();
|
|
|
|
sample.iter().cloned().any(|x| x == 1);
|
|
|
|
sample.iter().any(|x| x == &1);
|
|
|
|
|
|
|
|
// `BinaryHeap` doesn't have `contains` method
|
|
|
|
sample.iter().count();
|
|
|
|
sample.iter().next().is_none();
|
2019-09-25 12:25:31 +00:00
|
|
|
}
|