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

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

An iterator that strings two iterators together

Trait Implementations

impl<A, T: Iterator<A>, U: Iterator<A>> Iterator<A> for Chain<T, U>

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

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

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

impl<A, T: DoubleEndedIterator<A>, U: DoubleEndedIterator<A>> DoubleEndedIterator<A> for Chain<T, U>

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

impl<A, T: RandomAccessIterator<A>, U: RandomAccessIterator<A>> RandomAccessIterator<A> for Chain<T, U>

fn indexable(&self) -> uint

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

Derived Implementations

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

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

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