Struct std::iter::Take

pub struct Take<T> {
    priv iter: T,
    priv n: uint,
}

An iterator which only iterates over the first n iterations of iter.

Trait Implementations

impl<T: Clone> Clone for Take<T>

fn clone(&self) -> Take<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: Iterator<A>> Iterator<A> for Take<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: RandomAccessIterator<A>> RandomAccessIterator<A> for Take<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