[#bsl-List_Iterator-operator_inc-0f] = xref:bsl.adoc[bsl]::xref:bsl/List_Iterator.adoc[List_Iterator]::operator++ :relfileprefix: ../../ :mrdocs: Increment operators == Synopses Declared in `<bslstl_list.h>` Advance this iterator to the next element in the list and return its new value. 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). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/List_Iterator.adoc[List_Iterator<VALUE>]& xref:bsl/List_Iterator/operator_inc-04.adoc[operator++](); ---- [.small]#xref:bsl/List_Iterator/operator_inc-04.adoc[_» more..._]# Advance this iterator to the next element in the list and return its previous value. 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). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:bsl/List_Iterator.adoc[List_Iterator<VALUE>] xref:bsl/List_Iterator/operator_inc-08.adoc[operator++](int); ---- [.small]#xref:bsl/List_Iterator/operator_inc-08.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#