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

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

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

Implementors§