[#absl-linked_hash_map-2constructor-0eb] = xref:absl.adoc[absl]::xref:absl/linked_hash_map.adoc[linked_hash_map]::linked_hash_map :relfileprefix: ../../ :mrdocs: Constructs a map from an initializer list. == Synopsis Declared in `<absl/container/linked_hash_map.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- linked_hash_map( std::initializer_list<value_type> init, size_t reservation_size = 0, xref:absl/linked_hash_map/hasher.adoc[hasher] const& hash = hasher(), xref:absl/linked_hash_map/key_equal.adoc[key_equal] const& eq = key_equal(), xref:absl/linked_hash_map/allocator_type.adoc[allocator_type] const& alloc = allocator_type()); ---- == Parameters [cols="1,4"] |=== | 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. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#