pub type DuplicatesBy<I, V, F> = DuplicatesBy<I, V, ByFn<F>>;Expand description
An iterator adapter to filter for duplicate elements.
See .duplicates_by() for more information.
Aliased Type§
pub struct DuplicatesBy<I, V, F> {
pub(crate) iter: I,
pub(crate) meta: Meta<V, ByFn<F>>,
}Fields§
§iter: I§meta: Meta<V, ByFn<F>>