Struct std::collections::vec_map::IntoIterExperimental [-]  [+] [src]

pub struct IntoIter<V> {
    // some fields omitted
}

A consuming iterator over the key-value pairs of a map.

Trait Implementations

impl<V> Iterator<(uint, V)> for IntoIter<V>

fn next(&mut self) -> Option<(uint, V)>

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

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

impl<V> DoubleEndedIterator<(uint, V)> for IntoIter<V>

fn next_back(&mut self) -> Option<(uint, V)>