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

pub struct FlatMap<A, B, I, U, F> {
    // some fields omitted
}

An iterator that maps each element to an iterator, and yields the elements of the produced iterators

Trait Implementations

impl<A, B, I, U, F> Clone for FlatMap<A, B, I, U, F>

fn clone(&self) -> FlatMap<A, B, I, U, F>

fn clone_from(&mut self, &FlatMap<A, B, I, U, F>)

impl<A, B, I, U, F> Iterator<B> for FlatMap<A, B, I, U, F>

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

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

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

impl<A, B, I, U, F> DoubleEndedIterator<B> for FlatMap<A, B, I, U, F>

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