Add unordered_set

This commit is contained in:
Bailey Thompson
2017-12-10 15:57:58 -05:00
committed by GitHub
parent 3e6033ef7d
commit 9e0ce07cda

View File

@@ -20,7 +20,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 (todo) - collection of unique keys, hashed by keys
<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_multiset (todo) - collection of keys, hashed by keys
<p> unordered_multimap (todo) - collection of key-value pairs, hashed by keys