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