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

Content deleted Content added
code --> source
Line 17:
==Overview of functions==
 
The containers are defined in headers named after the names of the containers, e.g. <code>unordored_setunordered_set</code> is defined in header <code><unordered_set></code>. All containers satisfy the requirements of the [http://www.sgi.com/tech/stl/Container.html Container] [[concept (generic programming)|concept]], which means they have <code>begin()</code>, <code>end()</code>, <code>size()</code>, <code>max_size()</code>, <code>empty()</code>, and <code>swap()</code> methods.
 
{| class="wikitable" style="font-size:0.85em"