2 个版本
0.1.1 | 2023年7月16日 |
---|---|
0.1.0 | 2023年7月16日 |
#2370 in Rust 模式
在 sync_stream 中使用
8KB
153 行
混合数组
构建混合类型数组。创建用于最多12种唯一类型的泛型枚举。提供宏以使用正确大小的宏生成数组。
用法
- 在
Cargo.toml
文件中包含
[dependencies]
mixed_array = "0.1.0"
- 导入并使用
mixed_array
宏来创建一个项目数组
use mixed_array::mixed_array;
use std::cmp::Ordering;
// define a struct with a generic so the generated types are different as a demo
#[derive(Clone, Debug)]
struct Item<T> {
id: u32,
value: T,
}
impl<T> Eq for Item<T> {}
//implement ordering for our item for any T
impl<T, B> PartialEq<Item<B>> for Item<T> {
fn eq(&self, other: &Item<B>) -> bool {
self.id == other.id
}
}
impl<T, B> PartialOrd<Item<B>> for Item<T> {
fn partial_cmp(&self, other: &Item<B>) -> Option<Ordering> {
self.id.partial_cmp(&other.id)
}
}
impl<T> Ord for Item<T> {
fn cmp(&self, other: &Self) -> Ordering {
self.id.cmp(&other.id)
}
}
fn main() {
//can now create an array of different types
let items = mixed_array![
Item::<&str> {
id: 100,
value: "blah",
},
Item::<u32> {
id: 200,
value: 123,
},
Item::<f32> {
id: 300,
value: 9.3,
},
];
dbg!(items.into_iter().min());
}
替代方案
- Frunk - HList - 提供一个 `hlist` 宏来构建用于存储不同类型的递归自定义数据类型(替换使用数组),易于转换为元组。
依赖项
~305–760KB
~18K SLoC