Add unordered_map

This commit is contained in:
Bailey Thompson
2017-12-12 00:33:31 -05:00
committed by GitHub
parent dfa195e89d
commit e57fe76093

View File

@@ -21,7 +21,7 @@ Data structures that can be quickly searched which use comparators.
# Unordered associative containers
Data structures that can be quickly searched which use hashing.
<p> unordered_set - collection of unique keys, hashed by keys
<p> unordered_map (todo) - collection of key-value pairs, hashed by keys, keys are unique
<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_multimap (todo) - collection of key-value pairs, hashed by keys