absl::linked_hash_map::insert

Inserts an element into the map.

Synopsis

Declared in <absl/container/linked_hash_map.h>

std::pair<iterator, bool>
insert(value_type const& v);

Return Value

A pair of an iterator to the element and a bool that is true if insertion took place.

Parameters

NameDescription
vThe value to insert.