#counter #collection #module #python-counter #fpy

无 std counter-fpy

Rust 中 Python 的 Counter 模块的实现

2 个版本

0.1.2 2023 年 12 月 26 日
0.1.0 2023 年 12 月 10 日

#191无标准库

MIT 许可协议

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}");
    }
}

无运行时依赖