Struct collections::vec_map::IterMutExperimental [-]  [+] [src]

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

An iterator over the key-value pairs of a map, with the values being mutable.

Trait Implementations

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

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

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

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

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