Struct core::option::IterMutStable [-]  [+] [src]

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

An iterator over a mutable reference of the contained item in an Option.

Trait Implementations

impl<'a, A> Iterator<&'a mut A> for IterMut<'a, A>

fn next(&mut self) -> Option<&'a mut A>

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

impl<'a, A> DoubleEndedIterator<&'a mut A> for IterMut<'a, A>

fn next_back(&mut self) -> Option<&'a mut A>

impl<'a, A> ExactSizeIterator<&'a mut A> for IterMut<'a, A>

fn rposition<P>(&mut self, predicate: P) -> Option<uint> where P: FnMut(A) -> bool

fn len(&self) -> uint