From 32f5898bea0ebed00b066a211749ce155aa2b8a6 Mon Sep 17 00:00:00 2001 From: P1start Date: Sat, 2 Aug 2014 18:48:44 +1200 Subject: Implement Index for HashMap This also deprecates HashMap::get. Use indexing instead. --- src/libstd/collections/hashmap.rs | 54 ++++++++++++++++++++++++++++++++++----- 1 file changed, 48 insertions(+), 6 deletions(-) (limited to 'src/libstd') diff --git a/src/libstd/collections/hashmap.rs b/src/libstd/collections/hashmap.rs index a569ee4a32a..2532cf4b93d 100644 --- a/src/libstd/collections/hashmap.rs +++ b/src/libstd/collections/hashmap.rs @@ -26,6 +26,7 @@ use mem::replace; use num; use option::{Some, None, Option}; use result::{Ok, Err}; +use ops::Index; mod table { use clone::Clone; @@ -1341,7 +1342,7 @@ impl, V, S, H: Hasher> HashMap { /// /// // Update and return the existing value /// assert_eq!(*map.insert_or_update_with("a", 9, |_key, val| *val = 7), 7); - /// assert_eq!(map.get(&"a"), &7); + /// assert_eq!(map["a"], 7); /// ``` pub fn insert_or_update_with<'a>( &'a mut self, @@ -1392,9 +1393,9 @@ impl, V, S, H: Hasher> HashMap { /// } /// /// assert_eq!(map.len(), 3); - /// assert_eq!(map.get(&"a key"), &vec!["value", "new value"]); - /// assert_eq!(map.get(&"b key"), &vec!["new value"]); - /// assert_eq!(map.get(&"z key"), &vec!["new value", "value"]); + /// assert_eq!(map["a key"], vec!["value", "new value"]); + /// assert_eq!(map["b key"], vec!["new value"]); + /// assert_eq!(map["z key"], vec!["new value", "value"]); /// ``` pub fn find_with_or_insert_with<'a, A>(&'a mut self, k: K, @@ -1426,12 +1427,15 @@ impl, V, S, H: Hasher> HashMap { /// # Example /// /// ``` + /// #![allow(deprecated)] + /// /// use std::collections::HashMap; /// /// let mut map = HashMap::new(); /// map.insert("a", 1i); /// assert_eq!(map.get(&"a"), &1); /// ``` + #[deprecated = "prefer indexing instead, e.g., map[key]"] pub fn get<'a>(&'a self, k: &K) -> &'a V { match self.find(k) { Some(v) => v, @@ -1458,11 +1462,11 @@ impl, V, S, H: Hasher> HashMap { /// let val = map.get_mut(&"a"); /// *val = 40; /// } - /// assert_eq!(map.get(&"a"), &40); + /// assert_eq!(map["a"], 40); /// /// // A more direct way could be: /// *map.get_mut(&"a") = -2; - /// assert_eq!(map.get(&"a"), &-2); + /// assert_eq!(map["a"], -2); /// ``` pub fn get_mut<'a>(&'a mut self, k: &K) -> &'a mut V { match self.find_mut(k) { @@ -1738,6 +1742,21 @@ impl, V, S, H: Hasher + Default> Default for HashMap } } +impl, V, S, H: Hasher> Index for HashMap { + #[inline] + fn index<'a>(&'a self, index: &K) -> &'a V { + self.get(index) + } +} + +// FIXME(#12825) Indexing will always try IndexMut first and that causes issues. +/*impl, V, S, H: Hasher> ops::IndexMut for HashMap { + #[inline] + fn index_mut<'a>(&'a mut self, index: &K) -> &'a mut V { + self.get_mut(index) + } +}*/ + /// HashMap iterator pub type Entries<'a, K, V> = table::Entries<'a, K, V>; @@ -2694,6 +2713,29 @@ mod test_map { assert_eq!(iter.size_hint(), (3, Some(3))); } + + #[test] + fn test_index() { + let mut map: HashMap = HashMap::new(); + + map.insert(1, 2); + map.insert(2, 1); + map.insert(3, 4); + + assert_eq!(map[2], 1); + } + + #[test] + #[should_fail] + fn test_index_nonexistent() { + let mut map: HashMap = HashMap::new(); + + map.insert(1, 2); + map.insert(2, 1); + map.insert(3, 4); + + map[4]; + } } #[cfg(test)] -- cgit 1.4.1-3-g733a5