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#![warn(missing_docs)]
4
5pub mod map;
6pub mod set;
7
8#[doc(inline)]
9pub use map::HashMap;
10#[doc(inline)]
11pub use set::HashSet;