Struct core::iter::RevStable [-]  [+] [src]

pub struct Rev<T> {
    // some fields omitted
}

An double-ended iterator with the direction inverted

Trait Implementations

impl<A, T: ExactSizeIterator<A>> ExactSizeIterator<A> for Rev<T>

fn rposition<P>(&mut self, predicate: P) -> Option<uint> where P: FnMut(A) -> bool

fn len(&self) -> uint

impl<A, T: DoubleEndedIterator<A>> Iterator<A> for Rev<T>

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

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

impl<A, T: DoubleEndedIterator<A>> DoubleEndedIterator<A> for Rev<T>

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

impl<A, T: DoubleEndedIterator<A> + RandomAccessIterator<A>> RandomAccessIterator<A> for Rev<T>

fn indexable(&self) -> uint

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

Derived Implementations

impl<T: Clone> Clone for Rev<T>

fn clone(&self) -> Rev<T>

fn clone_from(&mut self, source: &Self)