Crate multiset

Source
Expand description

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.

Structs§

HashMultiSet
A hash-based multiset.
Iter
An iterator over the items of a HashMultiSet.