2 个版本
0.1.2 | 2023 年 12 月 26 日 |
---|---|
0.1.0 | 2023 年 12 月 10 日 |
#191 在 无标准库
7KB
102 行
Counter-fpy
Rust 中 Python 的 Counter 模块的实现。
https://docs.pythonlang.cn/3/library/collections.html?highlight=counter#collections.Counter
示例
use counter_fpy::Counter;
fn main() {
let sample = ["bxffour", "bxffour", "blackprince"];
let counter = Counter::new();
let collection = Counter::from(counter, &sample);
for (key, count) in collection.iter() {
println!("Key: {key} has count: {count}");
}
}