Type Definition tract_hir::internal::tract_itertools::structs::DedupWithCount [−][src]
pub type DedupWithCount<I> = CoalesceBy<I, DedupPredWithCount2CoalescePred<DedupEq>, (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.
See .dedup_with_count()
for more information.