standard_lib/collections/hash/set/mod.rs
1//! A module containing [`HashSet`] and associtated types.
2//!
3//! Some of these types provide owned and borrowed iteration over a set's elements while others are
4//! iterators over the result of set operations on two HashSets.
5//!
6//! As a note, there is no mutable iterator over the elements of a set because mutating the entries
7//! in place would cause a logic error.
8//!
9//! [`HashSet`] is also re-exported under the parent module.
10
11mod hash_set;
12mod iter;
13mod tests;
14
15pub use hash_set::*;
16pub use iter::*;