GNU g++  v5.2.1
GNU Standard C++
unordered_map.h File Reference

This is an internal header file, included by other library headers. More...

Functions

namespace std _GLIBCXX_VISIBILITY (default)
 

Detailed Description

This is an internal header file, included by other library headers.

Do not attempt to use it directly. {tr1/unordered_map}

Function Documentation

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

Parameters
KeyType of key objects.
TpType of mapped objects.
HashHashing function object type, defaults to hash<Value>.
PredPredicate function object type, defaults to equal_to<Value>.
AllocAllocator 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

Parameters
KeyType of key objects.
TpType of mapped objects.
HashHashing function object type, defaults to hash<Value>.
PredPredicate function object type, defaults to equal_to<Value>.
AllocAllocator type, defaults to allocator<Key>.

The resulting value type of the container is std::pair<const Key, Tp>.

References std::__exception_ptr::swap().

Here is the call graph for this function: