[#absl-linked_hash_map-erase-0a] = xref:absl.adoc[absl]::xref:absl/linked_hash_map.adoc[linked_hash_map]::erase :relfileprefix: ../../ :mrdocs: Removes the elements in the range `[first, last)]`. == Synopsis Declared in `<absl/container/linked_hash_map.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/linked_hash_map/iterator.adoc[iterator] erase( xref:absl/linked_hash_map/const_iterator.adoc[const_iterator] first, xref:absl/linked_hash_map/const_iterator.adoc[const_iterator] last); ---- == Return Value An iterator to the element following the last erased element. == 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]#