hashlink 0.3.0

HashMap-like containers that hold their key-value pairs in a user controllable order
Documentation
pub mod linked_hash_map;
pub mod linked_hash_set;
pub mod lru_cache;

pub use linked_hash_map::LinkedHashMap;
pub use linked_hash_set::LinkedHashSet;
pub use lru_cache::LruCache;