[#absl-linked_hash_set-erase-0a] = xref:absl.adoc[absl]::xref:absl/linked_hash_set.adoc[linked_hash_set]::erase :relfileprefix: ../../ :mrdocs: Removes the elements in the range `[first, last)]`. == Synopsis Declared in `<absl/container/linked_hash_set.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/linked_hash_set/iterator.adoc[iterator] erase( xref:absl/linked_hash_set/const_iterator.adoc[const_iterator] first, xref:absl/linked_hash_set/const_iterator.adoc[const_iterator] last); ---- == Return Value An iterator to the element following the last erased one. == Parameters [cols="1,4"] |=== | Name| Description | *first* | An iterator to the first element to erase. | *last* | An iterator past the last element to erase. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#