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..
With C++ STL being updated, will there ever be a set number of containers.
Share
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_mapandunordered_multimap(hash table as dictionary)unordered_setandunordered_multiset(hash table as set)