Constructs an element in place in the set using a position hint.
Declared in <absl/container/linked_hash_set.h>
template<typename... Args>
iterator
emplace_hint(
const_iterator hint,
Args&&... args);
An iterator to the inserted or existing element.
| Name | Description |
|---|---|
| hint | An iterator hint for where to insert. |
| args | The arguments used to construct the element. |