Does the new C ++ standard provide new containers?

When updating C ++ STL there will be an ever specified number of containers.
Edit:. When it comes to containers, a new addition to the library will be added, except for vectors, lists, etc.

+4
source share
2 answers

The proposed C ++ standard (aka C ++ 0x) adds the following template containers:

  • array (rather, like a fixed size vector)
  • forward_list (singly linked list)
  • unordered_map and unordered_multimap (hash table as a dictionary)
  • unordered_set and unordered_multiset (hash table as given)
+11
source

You can take a look at the Hash tables section of a very good Wikipedia article on C ++ 0x

+1
source

All Articles