Struct extra::treemap::TreeMapRevIterator

pub struct TreeMapRevIterator<'self, K, V> {
    priv iter: TreeMapIterator<'self, K, V>,
}

Lazy backward iterator over a map

Trait Implementations

impl<'self, K, V> std::iter::Iterator for TreeMapRevIterator<'self, K, V>

fn next(&mut self) -> std::option::Option

Advance the iterator to the next node (in order) and return a tuple with a reference to the key and value. If there are no more nodes, return None.

fn size_hint(&self) -> (uint, std::option::Option)