blob: 99abec61064527291cb8d06af8dac3c97e8c08ad (
plain) (
blame)
1
2
3
4
5
6
|
The multiset package provides a multiset implementation for python.
A multiset is similar to the builtin set, but it allows an element to occur
multiple times. It is an unordered collection of elements which have to be
hashable just like in a set. It supports the same methods and operations as set
does, e.g. membership test, union, intersection, and (symmetric) difference.
|