1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//! The Rust standard collections
//!
//! This library provides efficient implementations of the most common general purpose programming
//! data structures.
pub mod binary_heap;
pub mod btree_map;
pub mod btree_set;
pub mod hash_map;
pub mod hash_set;
pub mod linked_list;
pub mod vec_deque;
pub use binary_heap::BinaryHeap;
pub use btree_map::BTreeMap;
pub use btree_set::BTreeSet;
pub use hash_map::HashMap;
pub use hash_set::HashSet;
pub use linked_list::LinkedList;
pub use vec_deque::VecDeque;