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

pub struct Iter<'a, V: 'a> {
    // some fields omitted
}

An iterator over the key-value pairs of a map.

Trait Implementations

impl<'a, V> Clone for Iter<'a, V>

fn clone(&self) -> Iter<'a, V>

fn clone_from(&mut self, &Iter<'a, V>)

impl<'a, V> Iterator<(uint, &'a V)> for Iter<'a, V>

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

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

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

impl<'a, V> DoubleEndedIterator<(uint, &'a V)> for Iter<'a, V>

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