#type #box #type-erase

type-pools

一个用于存储多种类型值的结构

1 个不稳定版本

0.1.0 2024年5月15日

1143数据结构

MIT 许可证

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许可证

无运行时依赖