devela::_dep::itertools

Type Alias DedupByWithCount

pub type DedupByWithCount<I, Pred> = CoalesceBy<I, DedupPredWithCount2CoalescePred<Pred>, 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. This will determine equality using a comparison function.

See .dedup_by_with_count() or .dedup_with_count() for more information.

Aliased Typeยง

struct DedupByWithCount<I, Pred> { /* private fields */ }