[#absl-linked_hash_map-insert-0a] = xref:absl.adoc[absl]::xref:absl/linked_hash_map.adoc[linked_hash_map]::insert :relfileprefix: ../../ :mrdocs: Inserts an element into the map. == Synopsis Declared in `<absl/container/linked_hash_map.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- std::pair<iterator, bool> insert(xref:absl/linked_hash_map/value_type.adoc[value_type]&& v); ---- == Return Value A pair of an iterator to the element and a bool that is `true` if insertion took place. == Parameters [cols="1,4"] |=== | Name| Description | *v* | The value to insert. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#