pub trait InternIteratorElement<T, R> {
    type Output;

    fn intern_with<I, F>(iter: I, f: F) -> Self::Output
   where
        I: Iterator<Item = Self>,
        F: FnOnce(&[T]) -> R
; }

Required Associated Types

Required Methods

Implementors