Add unordered_multimap

This commit is contained in:
Bailey Thompson
2017-12-12 23:51:49 -05:00
committed by GitHub
parent 613e73bbcc
commit f20fe88946

View File

@@ -23,7 +23,7 @@ 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 - collection of keys, hashed by keys
<p> unordered_multimap (todo) - collection of key-value pairs, hashed by keys
<p> unordered_multimap - collection of key-value pairs, hashed by keys
# Container adaptors
Data structures which adapt other containers to enhance functionality.