kg-utils 0.4.0

Various collections and utilities.
1
2
3
4
5
6
7
8
9
10
pub use self::linked_hash_map::LinkedHashMap;
pub use self::lru_cache::LruCache;
pub use self::ord_set::OrdSet;
pub use self::sparse_set::SparseSet;

mod ord_set;
mod sparse_set;
pub mod linked_hash_map;
pub mod lru_cache;