当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust BTreeMap.pop_first用法及代码示例


本文简要介绍rust语言中 alloc::collections::btree_map::BTreeMap.pop_first 的用法。

用法

pub fn pop_first(&mut self) -> Option<(K, V)> where    K: Ord,

移除并返回Map中的第一个元素。此元素的键是Map中的最小键。

例子

按升序排空元素,同时保持每次迭代的可用映射。

#![feature(map_first_last)]
use std::collections::BTreeMap;

let mut map = BTreeMap::new();
map.insert(1, "a");
map.insert(2, "b");
while let Some((key, _val)) = map.pop_first() {
    assert!(map.iter().all(|(k, _v)| *k > key));
}
assert!(map.is_empty());

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 alloc::collections::btree_map::BTreeMap.pop_first。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。