Home
last modified time | relevance | path

Searched defs:DuplicatesBy (Results 1 – 1 of 1) sorted by relevance

/external/rust/crates/itertools/src/
Dduplicates_impl.rs10 pub struct DuplicatesBy<I: Iterator, Key, F> { struct
11 pub(crate) iter: I,
12 pub(crate) meta: Meta<Key, F>,
15 impl<I, V, F> fmt::Debug for DuplicatesBy<I, V, F> implementation
23 impl<I: Iterator, Key: Eq + Hash, F> DuplicatesBy<I, Key, F> { implementation
71 impl<I, Key, F> Iterator for DuplicatesBy<I, Key, F> implementation
80 let DuplicatesBy { iter, meta } = self; in next() localVariable
105 impl<I, Key, F> DoubleEndedIterator for DuplicatesBy<I, Key, F> implementation
112 let DuplicatesBy { iter, meta } = self; in next_back() localVariable
191 pub type DuplicatesBy<I, V, F> = private::DuplicatesBy<I, V, private::ByFn<F>>; typedef