.BI "QValueListConstIterator<T> \fBoperator--\fR ( int )"
.br
.in -1c
.SH DESCRIPTION
The QValueListConstIterator class provides a const iterator for QValueList.
.PP
In contrast to QValueListIterator, this class is used to iterate over a const list. It does not allow modification of the values of the list since that would break const semantics.
.PP
You can create the appropriate const iterator type by using the \fCconst_iterator\fR typedef provided by QValueList.
.PP
For more information on QValueList iterators, see QValueListIterator.
Prefix ++ makes the succeeding item current and returns an iterator pointing to the new current item. The iterator cannot check whether it reached the end of the list. Incrementing the iterator returned by end() causes undefined results.
.SH "QValueListConstIterator<T> QValueListConstIterator::operator++ ( int )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Postfix ++ makes the succeeding item current and returns an iterator pointing to the new current item. The iterator cannot check whether it reached the end of the list. Incrementing the iterator returned by end() causes undefined results.
Prefix -- makes the previous item current and returns an iterator pointing to the new current item. The iterator cannot check whether it reached the beginning of the list. Decrementing the iterator returned by begin() causes undefined results.
.SH "QValueListConstIterator<T> QValueListConstIterator::operator-- ( int )"
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
.PP
Postfix -- makes the previous item current and returns an iterator pointing to the new current item. The iterator cannot check whether it reached the beginning of the list. Decrementing the iterator returned by begin() causes undefined results.
.SH "bool QValueListConstIterator::operator== ( const QValueListConstIterator<T> & it ) const"
Compares this iterator with \fIit\fR and returns TRUE if they point