//! Map iter use super::*; use std::{ iter, collections::HashSet, hash::Hash, }; //TODO: Feature flag for SHA256 hashing type HashOutput = u64; fn compute(what: &H) -> HashOutput { use std::hash::Hasher; let mut hasher = std::collections::hash_map::DefaultHasher::new(); what.hash(&mut hasher); hasher.finish() } pub struct DedupIter(I, HashSet) where ::Item: Hash; impl Iterator for DedupIter where I::Item: Hash { type Item = I::Item; fn next(&mut self) -> Option { if let Some(next) = self.0.next() { let hash = compute(&next); if self.1.insert(hash) { Some(next) } else { return self.next(); } } else { None } } fn size_hint(&self) -> (usize, Option) { let (low, high) = self.0.size_hint(); (if low < 1 {0} else {1}, high) } } pub trait DedupIterExt: Iterator + Sized where Self::Item: Hash { fn dedup(self) -> DedupIter; } impl DedupIterExt for I where I::Item: Hash { fn dedup(self) -> DedupIter { let set = match self.size_hint() { (0, Some(0)) | (0, None) => HashSet::new(), (_, Some(x)) | (x, None) => HashSet::with_capacity(x), }; DedupIter(self, set) } }