Constructs a map from an initializer list.
Synopsis
Declared in <absl/container/linked_hash_map.h>
linked_hash_map(
std::initializer_list<value_type> init,
size_t reservation_size = 0,
hasher const& hash = hasher(),
key_equal const& eq = key_equal(),
allocator_type const& alloc = allocator_type());
Parameters
Name |
Description |
init |
The initializer list of elements. |
reservation_size |
The number of elements to reserve capacity for. |
hash |
The hash function to use. |
eq |
The key equality comparison to use. |
alloc |
The allocator to use. |
Created with MrDocs