tags:

views:

206

answers:

2

With C++ STL being updated, will there ever be a set number of containers.
Edit: When it comes to containers, Will there be new addition to the library in addition vectors, lists etc..

+10  A: 

The proposed C++ Standard (aka C++0x) adds the following templated containers:

  • array (rather like a fixed size vector)
  • forward_list (singly-linked list)
  • unordered_map and unordered_multimap (hash table as dictionary)
  • unordered_set and unordered_multiset (hash table as set)
anon
+1  A: 

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

Piotr Dobrogost