From 0b339e09ab5e6b6eb47adef1d82944dc620ac7d3 Mon Sep 17 00:00:00 2001 From: nham Date: Fri, 25 Jul 2014 00:48:05 -0400 Subject: [PATCH] Add methods for obtaining iterators over the keys and values of a SmallIntMap --- src/libcollections/smallintmap.rs | 47 +++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/src/libcollections/smallintmap.rs b/src/libcollections/smallintmap.rs index 994a6d6c5f3b9..e1980e1549a05 100644 --- a/src/libcollections/smallintmap.rs +++ b/src/libcollections/smallintmap.rs @@ -17,6 +17,7 @@ use core::prelude::*; use core::default::Default; use core::fmt; +use core::iter; use core::iter::{Enumerate, FilterMap}; use core::mem::replace; @@ -194,6 +195,18 @@ impl SmallIntMap { self.find(key).expect("key not present") } + /// An iterator visiting all keys in ascending order by the keys. + /// Iterator element type is `uint`. + pub fn keys<'r>(&'r self) -> Keys<'r, V> { + self.iter().map(|(k, _v)| k) + } + + /// An iterator visiting all values in ascending order by the keys. + /// Iterator element type is `&'r V`. + pub fn values<'r>(&'r self) -> Values<'r, V> { + self.iter().map(|(_k, v)| v) + } + /// An iterator visiting all key-value pairs in ascending order by the keys. /// Iterator element type is `(uint, &'r V)`. /// @@ -422,6 +435,14 @@ pub struct MutEntries<'a, T> { iterator!(impl MutEntries -> (uint, &'a mut T), get_mut_ref) double_ended_iterator!(impl MutEntries -> (uint, &'a mut T), get_mut_ref) +/// Forward iterator over the keys of a map +pub type Keys<'a, T> = + iter::Map<'static, (uint, &'a T), uint, Entries<'a, T>>; + +/// Forward iterator over the values of a map +pub type Values<'a, T> = + iter::Map<'static, (uint, &'a T), &'a T, Entries<'a, T>>; + #[cfg(test)] mod test_map { use std::prelude::*; @@ -517,6 +538,32 @@ mod test_map { assert_eq!(m.pop(&1), None); } + #[test] + fn test_keys() { + let mut map = SmallIntMap::new(); + map.insert(1, 'a'); + map.insert(2, 'b'); + map.insert(3, 'c'); + let keys = map.keys().collect::>(); + assert_eq!(keys.len(), 3); + assert!(keys.contains(&1)); + assert!(keys.contains(&2)); + assert!(keys.contains(&3)); + } + + #[test] + fn test_values() { + let mut map = SmallIntMap::new(); + map.insert(1, 'a'); + map.insert(2, 'b'); + map.insert(3, 'c'); + let values = map.values().map(|&v| v).collect::>(); + assert_eq!(values.len(), 3); + assert!(values.contains(&'a')); + assert!(values.contains(&'b')); + assert!(values.contains(&'c')); + } + #[test] fn test_iterator() { let mut m = SmallIntMap::new();