本文简要介绍rust语言中 alloc::collections::btree_map::BTreeMap.range
的用法。
用法
pub fn range<T: ?Sized, R>(&self, range: R) -> Range<'_, K, V> where T: Ord, K: Borrow<T> + Ord, R: RangeBounds<T>,
在映射中的 sub-range 个元素上构造一个双端迭代器。最简单的方法是使用范围语法 min..max
,因此 range(min..max)
将产生从 min(包括)到 max(不包括)的元素。该范围也可以输入为 (Bound<T>, Bound<T>)
,因此例如 range((Excluded(4), Included(10)))
将产生一个从 4 到 10 的 left-exclusive、right-inclusive 范围。
Panics
如果范围 start > end
出现Panics。如果范围 start == end
和两个边界都是 Excluded
,则会出现Panics。
例子
基本用法:
use std::collections::BTreeMap;
use std::ops::Bound::Included;
let mut map = BTreeMap::new();
map.insert(3, "a");
map.insert(5, "b");
map.insert(8, "c");
for (&key, &value) in map.range((Included(&4), Included(&8))) {
println!("{}: {}", key, value);
}
assert_eq!(Some((&5, &"b")), map.range(4..).next());
相关用法
- Rust BTreeMap.range_mut用法及代码示例
- Rust BTreeMap.remove_entry用法及代码示例
- Rust BTreeMap.retain用法及代码示例
- Rust BTreeMap.remove用法及代码示例
- Rust BTreeMap.last_key_value用法及代码示例
- Rust BTreeMap.get用法及代码示例
- Rust BTreeMap.try_insert用法及代码示例
- Rust BTreeMap.values_mut用法及代码示例
- Rust BTreeMap.first_key_value用法及代码示例
- Rust BTreeMap.values用法及代码示例
- Rust BTreeMap.get_key_value用法及代码示例
- Rust BTreeMap.into_values用法及代码示例
- Rust BTreeMap.is_empty用法及代码示例
- Rust BTreeMap.last_entry用法及代码示例
- Rust BTreeMap.iter用法及代码示例
- Rust BTreeMap.pop_last用法及代码示例
- Rust BTreeMap.len用法及代码示例
- Rust BTreeMap.drain_filter用法及代码示例
- Rust BTreeMap.split_off用法及代码示例
- Rust BTreeMap.clear用法及代码示例
- Rust BTreeMap.into_keys用法及代码示例
- Rust BTreeMap.append用法及代码示例
- Rust BTreeMap.contains_key用法及代码示例
- Rust BTreeMap.first_entry用法及代码示例
- Rust BTreeMap.entry用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 alloc::collections::btree_map::BTreeMap.range。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。