2019-09-25 07:25:31 -05:00
|
|
|
// run-rustfix
|
|
|
|
|
2021-02-25 08:07:15 -06:00
|
|
|
#![allow(unused, clippy::suspicious_map, clippy::iter_count)]
|
2019-09-25 07:25:31 -05:00
|
|
|
|
2021-05-05 14:17:49 -05:00
|
|
|
use std::collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet, LinkedList};
|
2019-09-25 07:25:31 -05:00
|
|
|
|
|
|
|
#[warn(clippy::needless_collect)]
|
2020-08-08 11:13:43 -05:00
|
|
|
#[allow(unused_variables, clippy::iter_cloned_collect, clippy::iter_next_slice)]
|
2019-09-25 07:25:31 -05:00
|
|
|
fn main() {
|
|
|
|
let sample = [1; 5];
|
|
|
|
let len = sample.iter().count();
|
2020-08-08 11:13:43 -05:00
|
|
|
if sample.iter().next().is_none() {
|
2019-09-25 07:25:31 -05:00
|
|
|
// Empty
|
|
|
|
}
|
|
|
|
sample.iter().cloned().any(|x| x == 1);
|
2021-05-05 14:08:24 -05: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 07:25:31 -05: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 14:17:49 -05: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();
|
2022-04-20 15:10:18 -05:00
|
|
|
|
|
|
|
// Don't lint string from str
|
|
|
|
let _ = ["", ""].into_iter().collect::<String>().is_empty();
|
|
|
|
|
|
|
|
let _ = sample.iter().next().is_none();
|
|
|
|
let _ = sample.iter().any(|x| x == &0);
|
|
|
|
|
|
|
|
struct VecWrapper<T>(Vec<T>);
|
|
|
|
impl<T> core::ops::Deref for VecWrapper<T> {
|
|
|
|
type Target = Vec<T>;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl<T> IntoIterator for VecWrapper<T> {
|
|
|
|
type IntoIter = <Vec<T> as IntoIterator>::IntoIter;
|
|
|
|
type Item = <Vec<T> as IntoIterator>::Item;
|
|
|
|
fn into_iter(self) -> Self::IntoIter {
|
|
|
|
self.0.into_iter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl<T> FromIterator<T> for VecWrapper<T> {
|
|
|
|
fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self {
|
|
|
|
Self(Vec::from_iter(iter))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let _ = sample.iter().next().is_none();
|
|
|
|
let _ = sample.iter().any(|x| x == &0);
|
2019-09-25 07:25:31 -05:00
|
|
|
}
|