absl::linked_hash_set::emplace_hint

Constructs an element in place in the set using a position hint.

Synopsis

Declared in <absl/container/linked_hash_set.h>

template<typename... Args>
iterator
emplace_hint(
    const_iterator hint,
    Args&&... args);

Return Value

An iterator to the inserted or existing element.

Parameters

NameDescription
hintAn iterator hint for where to insert.
argsThe arguments used to construct the element.