//! The Rust standard collections
//!
//! This library provides efficient implementations of the most common general purpose programming
//! data structures.
pub use BinaryHeap;
pub use BTreeMap;
pub use BTreeSet;
pub use HashMap;
pub use HashSet;
pub use LinkedList;
pub use VecDeque;