Remove OccupiedEntry::remove_pair
[unstable, deprecated since 1.12.0]
This commit is contained in:
parent
a724ff90e7
commit
df86cecdd2
@ -163,7 +163,6 @@
|
||||
- [linked_list_extras](library-features/linked-list-extras.md)
|
||||
- [lookup_host](library-features/lookup-host.md)
|
||||
- [manually_drop](library-features/manually-drop.md)
|
||||
- [map_entry_recover_keys](library-features/map-entry-recover-keys.md)
|
||||
- [mpsc_select](library-features/mpsc-select.md)
|
||||
- [n16](library-features/n16.md)
|
||||
- [never_type_impls](library-features/never-type-impls.md)
|
||||
|
@ -1,5 +0,0 @@
|
||||
# `map_entry_recover_keys`
|
||||
|
||||
The tracking issue for this feature is: [#34285]
|
||||
|
||||
[#34285]: https://github.com/rust-lang/rust/issues/34285
|
@ -2217,13 +2217,6 @@ pub fn key(&self) -> &K {
|
||||
self.handle.reborrow().into_kv().0
|
||||
}
|
||||
|
||||
/// Deprecated, renamed to `remove_entry`
|
||||
#[unstable(feature = "map_entry_recover_keys", issue = "34285")]
|
||||
#[rustc_deprecated(since = "1.12.0", reason = "renamed to `remove_entry`")]
|
||||
pub fn remove_pair(self) -> (K, V) {
|
||||
self.remove_entry()
|
||||
}
|
||||
|
||||
/// Take ownership of the key and value from the map.
|
||||
///
|
||||
/// # Examples
|
||||
|
@ -2017,13 +2017,6 @@ pub fn key(&self) -> &K {
|
||||
self.elem.read().0
|
||||
}
|
||||
|
||||
/// Deprecated, renamed to `remove_entry`
|
||||
#[unstable(feature = "map_entry_recover_keys", issue = "34285")]
|
||||
#[rustc_deprecated(since = "1.12.0", reason = "renamed to `remove_entry`")]
|
||||
pub fn remove_pair(self) -> (K, V) {
|
||||
self.remove_entry()
|
||||
}
|
||||
|
||||
/// Take the ownership of the key and value from the map.
|
||||
///
|
||||
/// # Examples
|
||||
|
Loading…
Reference in New Issue
Block a user