multiset

Multisets are containers that store elements following a sorted order, and where multiple elements can have equivalent values. 
* Multisets implement binary search tree. Sets store the elements in sorted order.
* The values in a multiset are unindexed. The values are immutable.The value of the element cannot be modified once it is added to the set, though it is possible to remove and then add the modified value.