Home
last modified time | relevance | path

Searched refs:DedupByWithCount (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/itertools/src/adaptors/
Dcoalesce.rs188 pub type DedupByWithCount<I, Pred> = typedef
215 pub type DedupWithCount<I> = DedupByWithCount<I, DedupEq>;
218 pub fn dedup_by_with_count<I, Pred>(mut iter: I, dedup_pred: Pred) -> DedupByWithCount<I, Pred> in dedup_by_with_count()
222 DedupByWithCount { in dedup_by_with_count()
/external/rust/crates/itertools/src/
Dlib.rs92 DedupByWithCount,
1239 fn dedup_by_with_count<Cmp>(self, cmp: Cmp) -> DedupByWithCount<Self, Cmp> in dedup_by_with_count()
/external/rust/crates/itertools/
DCHANGELOG.md53 - Add `Itertools::dedup_by_with_count` and `DedupByWithCount` (#423)