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


Rust HashSet.get_or_insert_with用法及代碼示例


本文簡要介紹rust語言中 std::collections::hash_set::HashSet.get_or_insert_with 的用法。

用法

pub fn get_or_insert_with<Q: ?Sized, F>(&mut self, value: &Q, f: F) -> &T where    T: Borrow<Q>,    Q: Hash + Eq,    F: FnOnce(&Q) -> T,

如果給定的 value 不存在,則將從 f 計算的值插入到集合中,然後返回對集合中值的引用。

例子

#![feature(hash_set_entry)]

use std::collections::HashSet;

let mut set: HashSet<String> = ["cat", "dog", "horse"]
    .iter().map(|&pet| pet.to_owned()).collect();

assert_eq!(set.len(), 3);
for &pet in &["cat", "dog", "fish"] {
    let value = set.get_or_insert_with(pet, str::to_owned);
    assert_eq!(value, pet);
}
assert_eq!(set.len(), 4); // a new "fish" was inserted

相關用法


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