3个版本
0.1.2 | 2022年5月6日 |
---|---|
0.1.1 | 2022年4月17日 |
0.1.0 | 2022年4月5日 |
#38 in #finite
在cantor中使用
17KB
356 行
Cantor是一个用于处理具有少量值(通常是枚举类型,但不限于)的类型的通用工具包。此包定义了Finite
特质,并在此特质之上实现了一些高效的零分配算法。
应用
- 遍历可能的值
- 值压缩
- 基于数组的映射
- 位图集
示例
// Define a "Finite" type
#[derive(Finite, PartialEq, Eq, PartialOrd, Ord, Clone, Copy, Debug)]
enum MyType {
A,
B(bool),
C(bool, bool)
}
// Value iteration
let mut num_values = 0;
for _ in MyType::iter() {
num_values += 1;
}
assert_eq!(num_values, 7);
// Value compression
let value = MyType::B(false);
assert_eq!(size_of_val(&value), 3);
let compressed = compress(value);
assert_eq!(size_of_val(&compressed), 1);
assert_eq!(value, compressed.expand());
// Array map
let mut map = ArrayMap::default();
map[MyType::B(true)] = 1;
map[MyType::C(true, true)] = 2;
assert_eq!(map[MyType::A], 0);
assert_eq!(map[MyType::B(true)], 1);
assert_eq!(map[MyType::C(true, true)], 2);
// Bitmap set
let mut set = BitmapSet::none();
set.include(MyType::A);
set.include(MyType::B(false));
set.include(MyType::C(true, false));
assert_eq!(set.size(), 3);
assert!(set.contains(MyType::B(false)));
assert!(!set.contains(MyType::C(false, true)));
依赖
~1.5MB
~35K SLoC