Type Definition itertools::structs::DedupByWithCount
source · pub type DedupByWithCount<I, Pred> = CoalesceBy<I, DedupPredWithCount2CoalescePred<Pred>, (usize, <I as Iterator>::Item)>;
Expand description
An iterator adaptor that removes repeated duplicates, while keeping a count of how many repeated elements were present. This will determine equality using a comparison function.
See .dedup_by_with_count()
or
.dedup_with_count()
for more information.