use itertools::Itertools; use std::fmt::Debug; use quickcheck::quickcheck; struct Unspecialized(I); impl Iterator for Unspecialized where I: Iterator, { type Item = I::Item; #[inline(always)] fn next(&mut self) -> Option { self.0.next() } } fn check_specialized<'a, V, IterItem, Iter, F>(iterator: &Iter, mapper: F) where V: Eq + Debug, Iter: Iterator + Clone + 'a, F: Fn(Box + 'a>) -> V, { assert_eq!( mapper(Box::new(Unspecialized(iterator.clone()))), mapper(Box::new(iterator.clone())) ) } fn test_specializations( it: &Iter, ) where IterItem: Eq + Debug + Clone, Iter: Iterator + Clone, { check_specialized(it, |i| i.count()); check_specialized(it, |i| i.last()); check_specialized(it, |i| i.collect::>()); check_specialized(it, |i| { let mut parameters_from_fold = vec![]; let fold_result = i.fold(vec![], |mut acc, v: IterItem| { parameters_from_fold.push((acc.clone(), v.clone())); acc.push(v); acc }); (parameters_from_fold, fold_result) }); check_specialized(it, |mut i| { let mut parameters_from_all = vec![]; let first = i.next(); let all_result = i.all(|x| { parameters_from_all.push(x.clone()); Some(x)==first }); (parameters_from_all, all_result) }); let size = it.clone().count(); for n in 0..size + 2 { check_specialized(it, |mut i| i.nth(n)); } // size_hint is a bit harder to check let mut it_sh = it.clone(); for n in 0..size + 2 { let len = it_sh.clone().count(); let (min, max) = it_sh.size_hint(); assert_eq!(size - n.min(size), len); assert!(min <= len); if let Some(max) = max { assert!(len <= max); } it_sh.next(); } } quickcheck! { fn put_back_qc(test_vec: Vec) -> () { test_specializations(&itertools::put_back(test_vec.iter())); let mut pb = itertools::put_back(test_vec.into_iter()); pb.put_back(1); test_specializations(&pb); } } quickcheck! { fn merge_join_by_qc(i1: Vec, i2: Vec) -> () { test_specializations(&i1.into_iter().merge_join_by(i2.into_iter(), std::cmp::Ord::cmp)); } } quickcheck! { fn map_into(v: Vec) -> () { test_specializations(&v.into_iter().map_into::()); } } quickcheck! { fn map_ok(v: Vec>) -> () { test_specializations(&v.into_iter().map_ok(|u| u.checked_add(1))); } }