modern_multiset/
lib.rs

1//! A multiset is an unordered collection of values. They are also
2//! known as bags.
3//!
4//! Unlike sets where each value is either included or not, multisets
5//! permit duplicates. Consequently, they're useful for maintaining a
6//! count of distinct values.
7
8mod multiset;
9
10pub use multiset::{HashMultiSet, Iter};