Struct std::vec::MoveRevIterator

pub struct MoveRevIterator<T> {
    priv v: ~[T],
}

An iterator that moves out of a vector in reverse order.

Trait Implementations

impl<T: Clone> Clone for MoveRevIterator<T>

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

Returns a copy of the value. The contents of owned pointers are copied to maintain uniqueness, while the contents of managed pointers are not copied.

impl<T> Iterator<T> for MoveRevIterator<T>

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

Advance the iterator and return the next value. Return None when the end is reached.

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

Return a lower bound and upper bound on the remaining length of the iterator.

The common use case for the estimate is pre-allocating space to store the results.