absl::linked_hash_map::insert

Inserts an element via a node handle, ignoring the position hint.

Synopsis

Declared in <absl/container/linked_hash_map.h>

iterator
insert(
    const_iterator hint,
    node_type&& node);

Return Value

An iterator to the inserted or existing element.

Parameters

NameDescription
nodeThe node handle holding the element to insert.
hintA position hint, which is ignored.