TypePools
Type pools are a data structure for storing values of multiple types. Values can be queried from their type.
An example
// Create a Type Pools structure
let mut pools = new;
// Adding values
pools.push;
pools.push;
pools.push;
// Query values
let int_pool = pools..unwrap;
let int_value: u32 = int_pool.values;
let string_value: &str = pools.get.unwrap;
License
The library is licensed under the MIT license