absl::linked_hash_map::insert

Inserts the elements of the range [first, last)] into the map.

Synopsis

Declared in <absl/container/linked_hash_map.h>

template<class InputIt>
void
insert(
    InputIt first,
    InputIt last);

Parameters

NameDescription
firstAn iterator to the first element to insert.
lastAn iterator past the last element to insert.