Trait itertools::misc::IntoIteratorTuple [] [src]

pub trait IntoIteratorTuple {
    type Output;
    fn into_iterator_tuple(self) -> Self::Output;
}

Apply IntoIterator on each element of a tuple.

Associated Types

type Output

Tuple of values that implement Iterator.

Required Methods

fn into_iterator_tuple(self) -> Self::Output

Return a tuple of iterators.

Implementors