當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust RawEntryMut.or_insert用法及代碼示例


本文簡要介紹rust語言中 std::collections::hash_map::RawEntryMut.or_insert 的用法。

用法

pub fn or_insert(self, default_key: K, default_val: V) -> (&'a mut K, &'a mut V) where    K: Hash,    S: BuildHasher,

如果為空,則通過插入默認值來確保值在條目中,並返回對條目中鍵和值的可變引用。

例子

#![feature(hash_raw_entry)]
use std::collections::HashMap;

let mut map: HashMap<&str, u32> = HashMap::new();

map.raw_entry_mut().from_key("poneyland").or_insert("poneyland", 3);
assert_eq!(map["poneyland"], 3);

*map.raw_entry_mut().from_key("poneyland").or_insert("poneyland", 10).1 *= 2;
assert_eq!(map["poneyland"], 6);

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::collections::hash_map::RawEntryMut.or_insert。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。