pub trait Pairable: Sized + Iterator {
    fn pair(self) -> Pair<Self>Notable traits for Pair<I>impl<I: Iterator> Iterator for Pair<I>    type Item = (I::Item, I::Item);;
}
Expand description

Returns an iterator that returns elements of the original iterator 2 at a time

Required Methods

Returns an iterator that returns elements of the original iterator 2 at a time

Implementors