impl<I> Iterator for Rev<I> where
I: DoubleEndedIterator, type Item = <I as Iterator>::Item;
whereReverses an iterator鈥檚 direction. Read more
Converts an iterator of pairs into a pair of containers. Read more
impl<'a, I, T: 'a> Iterator for Copied<I> where
I: Iterator<Item = &'a T>,
T: Copy, type Item = T;
whereCreates an iterator which copies all of its elements. Read more
impl<'a, I, T: 'a> Iterator for Cloned<I> where
I: Iterator<Item = &'a T>,
T: Clone, type Item = T;
whereimpl<I> Iterator for Cycle<I> where
I: Clone + Iterator, type Item = <I as Iterator>::Item;
whereRepeats an iterator endlessly. Read more
Sums the elements of an iterator. Read more