absl::linked_hash_map::erase

Removes the elements in the range [first, last)].

Synopsis

Declared in <absl/container/linked_hash_map.h>

iterator
erase(
    iterator first,
    iterator last);

Return Value

An iterator to the element following the last erased element.

Parameters

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