forked from mirror/async-std
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
502 B
Rust
21 lines
502 B
Rust
//! 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;
|