1
2
3
4
5
6
7
8
mod map;
mod set;

pub use map as easy_collections;
pub use set as easy_set;

pub use map::EasyMap;
pub use set::EasySet;