2个不稳定版本
使用旧的Rust 2015
0.2.0 | 2017年10月22日 |
---|---|
0.1.1 | 2017年10月22日 |
#127 in #counter
每月182次下载
23KB
271 代码行
CountMap
在Rust中实现计数映射。这种映射将计数器作为值保存,每次键被添加到映射中时,计数器都会增加。此实现简单地装饰了Rust std库中的HashMap。
用法
将以下内容添加到您的 Cargo.toml
[dependencies]
countmap = "0.1"
接下来,将此添加到您的crate根目录
extern crate countmap;
现在您可以在代码中使用计数映射
fn main() {
let map = countmap::CountMap::new();
map.insert_or_increment("foo");
}
许可证
Countmap可以根据您的选择以下任一许可证
- Apache许可证2.0版,(LICENSE-APACHE 或 https://apache.ac.cn/licenses/LICENSE-2.0)
- MIT许可证 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
依赖项
~240KB