This is an internal header file, included by other library headers. More...
Functions | |
namespace std | _GLIBCXX_VISIBILITY (default) |
This is an internal header file, included by other library headers.
Do not attempt to use it directly. {tr1/unordered_map}
namespace std _GLIBCXX_VISIBILITY | ( | default | ) |
A standard container composed of unique keys (containing at most one of each key value) that associates values of another type with the keys.
Meets the requirements of a container, and unordered associative container
Key | Type of key objects. |
Tp | Type of mapped objects. |
Hash | Hashing function object type, defaults to hash<Value>. |
Pred | Predicate function object type, defaults to equal_to<Value>. |
Alloc | Allocator type, defaults to allocator<Key>. |
The resulting value type of the container is std::pair<const Key, Tp>.
A standard container composed of equivalent keys (possibly containing multiple of each key value) that associates values of another type with the keys.
Meets the requirements of a container, and unordered associative container
Key | Type of key objects. |
Tp | Type of mapped objects. |
Hash | Hashing function object type, defaults to hash<Value>. |
Pred | Predicate function object type, defaults to equal_to<Value>. |
Alloc | Allocator type, defaults to allocator<Key>. |
The resulting value type of the container is std::pair<const Key, Tp>.
References std::__exception_ptr::swap().