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..
views:
206answers:
2
+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
andunordered_multimap
(hash table as dictionary)unordered_set
andunordered_multiset
(hash table as set)
anon
2009-05-23 08:21:48
+1
A:
You might take a look at Hash tables section of a very good Wikipedia article on C++0x
Piotr Dobrogost
2009-05-23 08:40:03