Struct std::collections::treemap::RevMutEntries[src]

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

Lazy backward iterator over a map

Trait Implementations

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

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

fn size_hint<'a, K, V>(&self) -> (uint, Option<uint>)

fn size_hint<'a, K, V>(&self) -> (uint, Option<uint>)

fn chain<U: Iterator<(&'a K, &'a mut V)>>(self, U) -> Chain<RevMutEntries<'a, K, V>, U>

fn zip<B, U: Iterator<B>>(self, U) -> Zip<RevMutEntries<'a, K, V>, U>

fn map<B>(self, |(&'a K, &'a mut V)|: 'r -> B) -> Map<'r, (&'a K, &'a mut V), B, RevMutEntries<'a, K, V>>

fn filter<'a, K, V>(self, |&(&'a K, &'a mut V)|: 'r -> bool) -> Filter<'r, (&'a K, &'a mut V), RevMutEntries<'a, K, V>>

fn filter_map<B>(self, |(&'a K, &'a mut V)|: 'r -> Option<B>) -> FilterMap<'r, (&'a K, &'a mut V), B, RevMutEntries<'a, K, V>>

fn enumerate<'a, K, V>(self) -> Enumerate<RevMutEntries<'a, K, V>>

fn peekable<'a, K, V>(self) -> Peekable<(&'a K, &'a mut V), RevMutEntries<'a, K, V>>

fn skip_while<'a, K, V>(self, |&(&'a K, &'a mut V)|: 'r -> bool) -> SkipWhile<'r, (&'a K, &'a mut V), RevMutEntries<'a, K, V>>

fn take_while<'a, K, V>(self, |&(&'a K, &'a mut V)|: 'r -> bool) -> TakeWhile<'r, (&'a K, &'a mut V), RevMutEntries<'a, K, V>>

fn skip<'a, K, V>(self, uint) -> Skip<RevMutEntries<'a, K, V>>

fn take<'a, K, V>(self, uint) -> Take<RevMutEntries<'a, K, V>>

fn scan<St, B>(self, St, |&mut St, (&'a K, &'a mut V)|: 'r -> Option<B>) -> Scan<'r, (&'a K, &'a mut V), B, RevMutEntries<'a, K, V>, St>

fn flat_map<B, U: Iterator<B>>(self, |(&'a K, &'a mut V)|: 'r -> U) -> FlatMap<'r, (&'a K, &'a mut V), RevMutEntries<'a, K, V>, U>

fn fuse<'a, K, V>(self) -> Fuse<RevMutEntries<'a, K, V>>

fn inspect<'a, K, V>(self, |&(&'a K, &'a mut V)|: 'r) -> Inspect<'r, (&'a K, &'a mut V), RevMutEntries<'a, K, V>>

fn by_ref<'a, K, V>(&'r mut self) -> ByRef<'r, RevMutEntries<'a, K, V>>

fn advance<'a, K, V>(&mut self, |(&'a K, &'a mut V)| -> bool) -> bool

fn collect<B: FromIterator<(&'a K, &'a mut V)>>(&mut self) -> B

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

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

fn fold<B>(&mut self, B, |B, (&'a K, &'a mut V)| -> B) -> B

fn count<'a, K, V>(&mut self) -> uint

fn all<'a, K, V>(&mut self, |(&'a K, &'a mut V)| -> bool) -> bool

fn any<'a, K, V>(&mut self, |(&'a K, &'a mut V)| -> bool) -> bool

fn find<'a, K, V>(&mut self, |&(&'a K, &'a mut V)| -> bool) -> Option<(&'a K, &'a mut V)>

fn position<'a, K, V>(&mut self, |(&'a K, &'a mut V)| -> bool) -> Option<uint>

fn max_by<B: Ord>(&mut self, |&(&'a K, &'a mut V)| -> B) -> Option<(&'a K, &'a mut V)>

fn min_by<B: Ord>(&mut self, |&(&'a K, &'a mut V)| -> B) -> Option<(&'a K, &'a mut V)>