absl::linked_hash_set::erase

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

Synopsis

Declared in <absl/container/linked_hash_set.h>

iterator
erase(
    const_iterator first,
    const_iterator last);

Return Value

An iterator to the element following the last erased one.

Parameters

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