Add unordered_multiset

This commit is contained in:
Bailey Thompson
2017-12-12 19:50:27 -05:00
committed by GitHub
parent 76966ca188
commit 1bc32f15f9

View File

@@ -22,7 +22,7 @@ Data structures that can be quickly searched which use comparators.
Data structures that can be quickly searched which use hashing.
<p> unordered_set - collection of unique keys, hashed by keys
<p> unordered_map - collection of key-value pairs, hashed by keys, keys are unique
<p> unordered_multiset (todo) - collection of keys, hashed by keys
<p> unordered_multiset - collection of keys, hashed by keys
<p> unordered_multimap (todo) - collection of key-value pairs, hashed by keys
# Container adaptors