absl::linked_hash_map::emplace_hint

Constructs an element in place if the key is not present, ignoring the position hint.

Synopsis

Declared in <absl/container/linked_hash_map.h>

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

Return Value

An iterator to the inserted or existing element.

Parameters

NameDescription
argsThe arguments used to construct the element.
hintA position hint, which is ignored.