本文简要介绍rust语言中 std::collections::hash_set::HashSet.drain_filter
的用法。
用法
pub fn drain_filter<F>(&mut self, pred: F) -> DrainFilter<'_, T, F> where F: FnMut(&T) -> bool,
创建一个迭代器,它使用闭包来确定是否应该删除一个值。
如果闭包返回 true,则删除并生成该值。如果闭包返回 false,则该值将保留在列表中并且不会由迭代器产生。
如果迭代器仅被部分消耗或根本不消耗,则剩余的每个值仍将受到闭包的影响,如果它返回 true,则将其删除并丢弃。
如果在闭包中发生Panics,或者在删除值时发生Panics,或者如果DrainFilter
本身泄露,则未指定还有多少值将受到闭包。
例子
将集合拆分为偶数和奇数,重用原始集合:
#![feature(hash_drain_filter)]
use std::collections::HashSet;
let mut set: HashSet<i32> = (0..8).collect();
let drained: HashSet<i32> = set.drain_filter(|v| v % 2 == 0).collect();
let mut evens = drained.into_iter().collect::<Vec<_>>();
let mut odds = set.into_iter().collect::<Vec<_>>();
evens.sort();
odds.sort();
assert_eq!(evens, vec![0, 2, 4, 6]);
assert_eq!(odds, vec![1, 3, 5, 7]);
相关用法
- Rust HashSet.drain用法及代码示例
- Rust HashSet.difference用法及代码示例
- Rust HashSet.get_or_insert_with用法及代码示例
- Rust HashSet.insert用法及代码示例
- Rust HashSet.get_or_insert用法及代码示例
- Rust HashSet.is_superset用法及代码示例
- Rust HashSet.shrink_to用法及代码示例
- Rust HashSet.with_hasher用法及代码示例
- Rust HashSet.with_capacity用法及代码示例
- Rust HashSet.try_reserve用法及代码示例
- Rust HashSet.hasher用法及代码示例
- Rust HashSet.get用法及代码示例
- Rust HashSet.is_empty用法及代码示例
- Rust HashSet.shrink_to_fit用法及代码示例
- Rust HashSet.len用法及代码示例
- Rust HashSet.new用法及代码示例
- Rust HashSet.remove用法及代码示例
- Rust HashSet.reserve用法及代码示例
- Rust HashSet.with_capacity_and_hasher用法及代码示例
- Rust HashSet.contains用法及代码示例
- Rust HashSet.replace用法及代码示例
- Rust HashSet.clear用法及代码示例
- Rust HashSet.union用法及代码示例
- Rust HashSet.is_subset用法及代码示例
- Rust HashSet.take用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::collections::hash_set::HashSet.drain_filter。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。