[#bsl-List_Iterator-operator_inc-08] = xref:bsl.adoc[bsl]::xref:bsl/List_Iterator.adoc[List_Iterator]::operator++ :relfileprefix: ../../ :mrdocs: Advance this iterator to the next element and return its previous value. == Synopsis Declared in `<bslstl_list.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/List_Iterator.adoc[List_Iterator<VALUE>] operator++(int postfix); ---- == Description The behavior is undefined unless this iterator is in the range `[begin() .. end())]` for some list (i.e., the iterator is not singular, is not `end()`, and has not been invalidated). == Return Value previous value of this iterator == Parameters [cols="1,4"] |=== | Name| Description | *postfix* | unused parameter distinguishing the postfix operator |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#