dyncollections 0.1.0

This library provides a bunch of collections to store trait objects and retrive concrete types from them
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod hashmap;
pub mod key;
pub mod make_concrete;
pub mod ordmap;
pub mod set;

pub use hashmap::HashDynMap;
pub use make_concrete::MakeConcrete;
pub use ordmap::OrdDynMap;
pub use set::{DynKey, DynSet};