[#absl-InlinedVector-erase-05] = xref:absl.adoc[absl]::xref:absl/InlinedVector.adoc[InlinedVector]::erase :relfileprefix: ../../ :mrdocs: Erases the element at `pos`, returning an `iterator` pointing to where the erased element was located. == Synopsis Declared in `<absl/container/inlined_vector.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/InlinedVector/iterator.adoc[iterator] erase(xref:absl/InlinedVector/const_iterator.adoc[const_iterator] pos); ---- == Description NOTE: may return `end()`, which is not dereferenceable. == Return Value An `iterator` to the element that followed the erased element. == Parameters [cols="1,4"] |=== | Name| Description | *pos* | The position of the element to erase. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#