2 个不稳定版本
使用旧的 Rust 2015
0.2.0 | 2015年4月3日 |
---|---|
0.1.0 | 2015年4月3日 |
42 在 #aggregate
4,833 每月下载量
在 38 个crate中使用(通过 nickel)
4KB
53 行
轻松从键值迭代器聚合值组。
示例
use std::collections::HashMap;
use groupable::Groupable;
let evens = (0..10).map(|i| (i % 2 == 0, i))
.group::<HashMap<bool, Vec<usize>>>();
assert_eq!(evens[&true], [0, 2, 4, 6, 8]);
assert_eq!(evens[&false], [1, 3, 5, 7, 9]);