standard_lib/collections/hash/mod.rs
1//! Collections based on the [`Hash`](std::hash::Hash) trait, including [`HashMap`] and [`HashSet`]
2//! for storing unique values or key-value pairs.
3#![cfg(feature = "contiguous")]
4#![warn(missing_docs)]
5
6pub mod map;
7pub mod set;
8
9#[doc(inline)]
10pub use map::HashMap;
11#[doc(inline)]
12pub use set::HashSet;