Struct std::iter::ZipStable [-]  [+] [src]

pub struct Zip<T, U> {
    // some fields omitted
}

An iterator that iterates two other iterators simultaneously

Trait Implementations

impl<A, B, T, U> ExactSizeIterator<(A, B)> for Zip<T, U>

fn rposition<P>(&mut self, P) -> Option<uint>

fn len(&self) -> uint

impl<A, B, T: Iterator<A>, U: Iterator<B>> Iterator<(A, B)> for Zip<T, U>

fn next(&mut self) -> Option<(A, B)>

fn size_hint(&self) -> (uint, Option<uint>)

fn size_hint(&self) -> (uint, Option<uint>)

impl<A, B, T: ExactSizeIterator<A>, U: ExactSizeIterator<B>> DoubleEndedIterator<(A, B)> for Zip<T, U>

fn next_back(&mut self) -> Option<(A, B)>

impl<A, B, T: RandomAccessIterator<A>, U: RandomAccessIterator<B>> RandomAccessIterator<(A, B)> for Zip<T, U>

fn indexable(&self) -> uint

fn idx(&mut self, index: uint) -> Option<(A, B)>

Derived Implementations

impl<T: Clone, U: Clone> Clone for Zip<T, U>

fn clone(&self) -> Zip<T, U>

fn clone_from(&mut self, &Zip<T, U>)