Unordered associative containers (C++): Difference between revisions

Content deleted Content added
Undid revision 538798984 by Zombiezparadize (talk): The program instantiates "std::unordered_map<std::string, int>" and so needs to contain "#include <string>".
Overview of functions: fix constructor/destructor links
Line 28:
|-
! rowspan=4 |
| [http://en.cppreference.com/w/cpp/container/unordered_set/setunordered_set (constructor)]
| [http://en.cppreference.com/w/cpp/container/unordered_map/mapunordered_map (constructor)]
| [http://en.cppreference.com/w/cpp/container/unordered_multiset/multisetunordered_multiset (constructor)]
| [http://en.cppreference.com/w/cpp/container/unordered_multimap/multimapunordered_multimap (constructor)]
| Constructs the container from variety of sources
|-
| [http://en.cppreference.com/w/cpp/container/unordered_set/~setunordered_set (destructor)]
| [http://en.cppreference.com/w/cpp/container/unordered_map/~mapunordered_map (destructor)]
| [http://en.cppreference.com/w/cpp/container/unordered_multiset/~multisetunordered_multiset (destructor)]
| [http://en.cppreference.com/w/cpp/container/unordered_multimap/~multimapunordered_multimap (destructor)]
| Destructs the set and the contained elements
|-