[#absl-linked_hash_map-emplace_hint] = xref:absl.adoc[absl]::xref:absl/linked_hash_map.adoc[linked_hash_map]::emplace_hint :relfileprefix: ../../ :mrdocs: Constructs an element in place if the key is not present, ignoring the position hint. == Synopsis Declared in `<absl/container/linked_hash_map.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename... Args> xref:absl/linked_hash_map/iterator.adoc[iterator] emplace_hint( xref:absl/linked_hash_map/const_iterator.adoc[const_iterator] hint, Args&&... args); ---- == Return Value An iterator to the inserted or existing element. == Parameters [cols="1,4"] |=== | Name| Description | *args* | The arguments used to construct the element. | *hint* | A position hint, which is ignored. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#