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

Name

Description

hint

An iterator hint for where to insert.

args

The arguments used to construct the element.

Created with MrDocs