Type Alias DedupWithCount
pub type DedupWithCount<I> = CoalesceBy<I, DedupPredWithCount2CoalescePred<DedupEq>, WithCount>;
Available on crate feature
dep_itertools
only.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.
Aliased Typeยง
struct DedupWithCount<I> { /* private fields */ }