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

mod multiset;

pub use multiset::{HashMultiSet};