absl::linked_hash_map::insert

Inserts an element into the map, ignoring the position hint.

Synopsis

Declared in <absl/container/linked_hash_map.h>

iterator
insert(
    const_iterator hint,
    value_type const& v);

Return Value

An iterator to the inserted or existing element.

Parameters

NameDescription
vThe value to insert.
hintA position hint, which is ignored.