type-pools

Crates.iotype-pools
lib.rstype-pools
version0.1.0
sourcesrc
created_at2024-05-15 19:51:38.751301
updated_at2024-05-15 19:51:38.751301
descriptionA data structure to store values of multiple types
homepagehttps://github.com/jomy10/type-pools
repositoryhttps://github.com/jomy10/type-pools
max_upload_size
id1241442
size8,488
Jonas Everaert (Jomy10)

documentation

README

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 = 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();

License

The library is licensed under the MIT license

Commit count: 5

cargo fmt