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

#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
pub struct Skip<I> {
    // some fields omitted
}

An iterator that skips over n elements of iter.

Trait Implementations

impl<I> Iterator for Skip<I> where I: Iterator

type Item = <I as Iterator>::Item

fn next(&mut self) -> Option<<I as Iterator>::Item>

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

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

impl<I> RandomAccessIterator for Skip<I> where I: RandomAccessIterator

fn indexable(&self) -> usize

fn idx(&mut self, index: usize) -> Option<<I as Iterator>::Item>

impl<I> ExactSizeIterator for Skip<I> where I: ExactSizeIterator

fn len(&self) -> usize

Derived Implementations

impl<I> Clone for Skip<I> where I: Clone

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

fn clone_from(&mut self, &Skip<I>)