macron-collections 0.1.6

Creates a new instance of std collections: HashMap, HashSet, BTreeMap, BTreeSet, VecDeque, LinkedList and BinaryHeap
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]

pub use macron_map;
pub use macron_map::parse_map;

pub mod vec_deque;

pub mod hash_map;
pub mod hash_set;

pub mod btree_map;
pub mod btree_set;

pub mod binary_heap;

pub mod linked_list;