Skip to content

Commit fbec3ec

Browse files
committed
Implement get_key_value for HashMap, BTreeMap
1 parent f5631d9 commit fbec3ec

File tree

2 files changed

+55
-0
lines changed

2 files changed

+55
-0
lines changed

src/liballoc/btree/map.rs

+27
Original file line numberDiff line numberDiff line change
@@ -576,6 +576,33 @@ impl<K: Ord, V> BTreeMap<K, V> {
576576
}
577577
}
578578

579+
/// Returns the key-value pair corresponding to the supplied key.
580+
///
581+
/// The supplied key may be any borrowed form of the map's key type, but the ordering
582+
/// on the borrowed form *must* match the ordering on the key type.
583+
///
584+
/// # Examples
585+
///
586+
/// ```
587+
/// #![feature(map_get_key_value)]
588+
/// use std::collections::BTreeMap;
589+
///
590+
/// let mut map = BTreeMap::new();
591+
/// map.insert(1, "a");
592+
/// assert_eq!(map.get_key_value(&1), Some((&1, &"a")));
593+
/// assert_eq!(map.get_key_value(&2), None);
594+
/// ```
595+
#[unstable(feature = "map_get_key_value", issue = "49347")]
596+
pub fn get_key_value<Q: ?Sized>(&self, k: &Q) -> Option<(&K, &V)>
597+
where K: Borrow<Q>,
598+
Q: Ord
599+
{
600+
match search::search_tree(self.root.as_ref(), k) {
601+
Found(handle) => Some(handle.into_kv()),
602+
GoDown(_) => None,
603+
}
604+
}
605+
579606
/// Returns `true` if the map contains a value for the specified key.
580607
///
581608
/// The key may be any borrowed form of the map's key type, but the ordering

src/libstd/collections/hash/map.rs

+28
Original file line numberDiff line numberDiff line change
@@ -1184,6 +1184,34 @@ impl<K, V, S> HashMap<K, V, S>
11841184
self.search(k).map(|bucket| bucket.into_refs().1)
11851185
}
11861186

1187+
/// Returns the key-value pair corresponding to the supplied key.
1188+
///
1189+
/// The supplied key may be any borrowed form of the map's key type, but
1190+
/// [`Hash`] and [`Eq`] on the borrowed form *must* match those for
1191+
/// the key type.
1192+
///
1193+
/// [`Eq`]: ../../std/cmp/trait.Eq.html
1194+
/// [`Hash`]: ../../std/hash/trait.Hash.html
1195+
///
1196+
/// # Examples
1197+
///
1198+
/// ```
1199+
/// #![feature(map_get_key_value)]
1200+
/// use std::collections::HashMap;
1201+
///
1202+
/// let mut map = HashMap::new();
1203+
/// map.insert(1, "a");
1204+
/// assert_eq!(map.get_key_value(&1), Some((&1, &"a")));
1205+
/// assert_eq!(map.get_key_value(&2), None);
1206+
/// ```
1207+
#[unstable(feature = "map_get_key_value", issue = "49347")]
1208+
pub fn get_key_value<Q: ?Sized>(&self, k: &Q) -> Option<(&K, &V)>
1209+
where K: Borrow<Q>,
1210+
Q: Hash + Eq
1211+
{
1212+
self.search(k).map(|bucket| bucket.into_refs())
1213+
}
1214+
11871215
/// Returns true if the map contains a value for the specified key.
11881216
///
11891217
/// The key may be any borrowed form of the map's key type, but

0 commit comments

Comments
 (0)