4个版本 (2个重大变更)
使用旧的Rust 2015
0.4.1 | 2018年3月13日 |
---|---|
0.4.0 | 2017年3月17日 |
0.3.0 | 2017年1月26日 |
0.1.0 | 2016年2月27日 |
#160 在 缓存
每月682次下载
10KB
204 行
transient-hashmap
简单的Rust HashMap,具有短暂条目。
示例
use transient_hashmap::TransientHashMap;
let entry_lifetime_seconds = 0;
let mut map = TransientHashMap::new(entry_lifetime_seconds);
map.insert(10, "Hello World");
// Clear old entries
map.prune();
// Item is not there
assert_eq!(map.contains_key(10), false);
Cargo.toml
[dependencies]
transient-hashmap = "0.4"
lib.rs
:
具有有限生存期的条目的HashMap。