Struct std::iter::Invert

pub struct Invert<T> {
    priv iter: T,
}

An double-ended iterator with the direction inverted

Trait Implementations

impl<A, T: ExactSize<A>> ExactSize<A> for Invert<T>

impl<T: Clone> Clone for Invert<T>

fn clone(&self) -> Invert<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<A, T: DoubleEndedIterator<A>> Iterator<A> for Invert<T>

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

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.

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

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

Yield an element from the end of the range, returning None if the range is empty.

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

fn indexable(&self) -> uint

Return the number of indexable elements. At most std::uint::max_value elements are indexable, even if the iterator represents a longer range.

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

Return an element at an index