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

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

An iterator over a BTreeMap's entries.

Trait Implementations

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

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

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

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

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

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

impl<'a, K, V> ExactSizeIterator<(&'a K, &'a V)> for Iter<'a, K, V>

fn rposition<P>(&mut self, P) -> Option<uint>

fn len(&self) -> uint