当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust OccupiedEntry.replace_entry用法及代码示例


本文简要介绍rust语言中 std::collections::hash_map::OccupiedEntry.replace_entry 的用法。

用法

pub fn replace_entry(self, value: V) -> (K, V)

替换条目,返回旧的键和值。哈希映射中的新键将是用于创建此条目的键。

例子

#![feature(map_entry_replace)]
use std::collections::hash_map::{Entry, HashMap};
use std::rc::Rc;

let mut map: HashMap<Rc<String>, u32> = HashMap::new();
map.insert(Rc::new("Stringthing".to_string()), 15);

let my_key = Rc::new("Stringthing".to_string());

if let Entry::Occupied(entry) = map.entry(my_key) {
    // Also replace the key with a handle to our other key.
    let (old_key, old_value): (Rc<String>, u32) = entry.replace_entry(16);
}

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::collections::hash_map::OccupiedEntry.replace_entry。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。