Struct std::collections::treemap::RevEntries[src]
pub struct RevEntries<'a, K, V> {
// some fields omitted
}Lazy backward iterator over a map
pub struct RevEntries<'a, K, V> {
// some fields omitted
}Lazy backward iterator over a map
impl<'a, K, V> Iterator<(&'a K, &'a V)> for RevEntries<'a, K, V>fn next<'a, K, V>(&mut self) -> Option<(&'a K, &'a 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 V)>>(self, U) -> Chain<RevEntries<'a, K, V>, U>fn zip<B, U: Iterator<B>>(self, U) -> Zip<RevEntries<'a, K, V>, U>fn map<B>(self, |(&'a K, &'a V)|: 'r -> B) -> Map<'r, (&'a K, &'a V), B, RevEntries<'a, K, V>>fn filter<'a, K, V>(self, |&(&'a K, &'a V)|: 'r -> bool) -> Filter<'r, (&'a K, &'a V), RevEntries<'a, K, V>>fn filter_map<B>(self, |(&'a K, &'a V)|: 'r -> Option<B>) -> FilterMap<'r, (&'a K, &'a V), B, RevEntries<'a, K, V>>fn enumerate<'a, K, V>(self) -> Enumerate<RevEntries<'a, K, V>>fn peekable<'a, K, V>(self) -> Peekable<(&'a K, &'a V), RevEntries<'a, K, V>>fn skip_while<'a, K, V>(self, |&(&'a K, &'a V)|: 'r -> bool) -> SkipWhile<'r, (&'a K, &'a V), RevEntries<'a, K, V>>fn take_while<'a, K, V>(self, |&(&'a K, &'a V)|: 'r -> bool) -> TakeWhile<'r, (&'a K, &'a V), RevEntries<'a, K, V>>fn skip<'a, K, V>(self, uint) -> Skip<RevEntries<'a, K, V>>fn take<'a, K, V>(self, uint) -> Take<RevEntries<'a, K, V>>fn scan<St, B>(self, St, |&mut St, (&'a K, &'a V)|: 'r -> Option<B>) -> Scan<'r, (&'a K, &'a V), B, RevEntries<'a, K, V>, St>fn flat_map<B, U: Iterator<B>>(self, |(&'a K, &'a V)|: 'r -> U) -> FlatMap<'r, (&'a K, &'a V), RevEntries<'a, K, V>, U>fn fuse<'a, K, V>(self) -> Fuse<RevEntries<'a, K, V>>fn inspect<'a, K, V>(self, |&(&'a K, &'a V)|: 'r) -> Inspect<'r, (&'a K, &'a V), RevEntries<'a, K, V>>fn by_ref<'a, K, V>(&'r mut self) -> ByRef<'r, RevEntries<'a, K, V>>fn advance<'a, K, V>(&mut self, |(&'a K, &'a V)| -> bool) -> boolfn collect<B: FromIterator<(&'a K, &'a V)>>(&mut self) -> Bfn nth<'a, K, V>(&mut self, uint) -> Option<(&'a K, &'a V)>fn last<'a, K, V>(&mut self) -> Option<(&'a K, &'a V)>fn fold<B>(&mut self, B, |B, (&'a K, &'a V)| -> B) -> Bfn count<'a, K, V>(&mut self) -> uintfn all<'a, K, V>(&mut self, |(&'a K, &'a V)| -> bool) -> boolfn any<'a, K, V>(&mut self, |(&'a K, &'a V)| -> bool) -> boolfn find<'a, K, V>(&mut self, |&(&'a K, &'a V)| -> bool) -> Option<(&'a K, &'a V)>fn position<'a, K, V>(&mut self, |(&'a K, &'a V)| -> bool) -> Option<uint>fn max_by<B: Ord>(&mut self, |&(&'a K, &'a V)| -> B) -> Option<(&'a K, &'a V)>fn min_by<B: Ord>(&mut self, |&(&'a K, &'a V)| -> B) -> Option<(&'a K, &'a V)>
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct (or str), enum,
trait, typedef (or
tdef).