本文簡要介紹rust語言中 Struct std::collections::hash_map::DrainFilter
的用法。
用法
pub struct DrainFilter<'a, K, V, F> where F: FnMut(&K, &mut V) -> bool, { /* fields omitted */ }
對 HashMap
的條目進行排水過濾的迭代器。
此 struct
由 drain_filter
方法在 HashMap
上創建。
示例
#![feature(hash_drain_filter)]
use std::collections::HashMap;
let mut map = HashMap::new();
map.insert("a", 1);
let iter = map.drain_filter(|_k, v| *v % 2 == 0);
相關用法
- Rust Drain.as_slice用法及代碼示例
- Rust Drain.as_str用法及代碼示例
- Rust Drain用法及代碼示例
- Rust Drop用法及代碼示例
- Rust DirBuilder.new用法及代碼示例
- Rust DirEntry.metadata用法及代碼示例
- Rust Duration.as_micros用法及代碼示例
- Rust Duration.subsec_nanos用法及代碼示例
- Rust DebugList.entries用法及代碼示例
- Rust Duration.checked_add用法及代碼示例
- Rust DoubleEndedIterator.try_rfold用法及代碼示例
- Rust Div用法及代碼示例
- Rust DirBuilder.recursive用法及代碼示例
- Rust Duration.new用法及代碼示例
- Rust DerefMut用法及代碼示例
- Rust DirBuilder.create用法及代碼示例
- Rust DebugList用法及代碼示例
- Rust DirEntry.path用法及代碼示例
- Rust DebugMap.key用法及代碼示例
- Rust Duration.subsec_micros用法及代碼示例
- Rust DoubleEndedIterator.rfold用法及代碼示例
- Rust DirEntry.file_type用法及代碼示例
- Rust Duration.mul_f64用法及代碼示例
- Rust DebugStruct.finish_non_exhaustive用法及代碼示例
- Rust DebugStruct.field用法及代碼示例
注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 Struct std::collections::hash_map::DrainFilter。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。