1 个不稳定版本
0.1.0 | 2024年5月15日 |
---|
1143 在 数据结构 中
9KB
126 行
TypePools
类型池是多类型值存储的数据结构。可以通过类型查询值。
示例
// Create a Type Pools structure
let mut pools = TypePools::new();
// Adding values
pools.push(1 as u32);
pools.push(2 as u32);
pools.push("Hello world");
// Query values
let int_pool = pools.type_pool::<u32>().unwrap();
let int_value: u32 = int_pool.values[0];
let string_value: &str = pools.get(0).unwrap();
许可证
该库采用MIT许可证