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

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

An iterator that skips over n elements of iter.

Trait Implementations

impl<A, T: Iterator<A>> Iterator<A> for Skip<T>

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

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

impl<A, T: RandomAccessIterator<A>> RandomAccessIterator<A> for Skip<T>

fn indexable(&self) -> uint

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

Derived Implementations

impl<T: Clone> Clone for Skip<T>

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

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