The QCborArray::ConstIterator class provides an STL-style const iterator for QCborArray. More...
This class was introduced in Qt 5.12.
ConstIterator(const ConstIterator &other) | |
ConstIterator() | |
ConstIterator & | operator=(const ConstIterator &other) |
bool | operator!=(const Iterator &o) const |
bool | operator!=(const ConstIterator &o) const |
QCborValueConstRef | operator*() const |
ConstIterator | operator+(qsizetype j) const |
ConstIterator & | operator++() |
ConstIterator | operator++(int) |
ConstIterator & | operator+=(qsizetype j) |
ConstIterator | operator-(qsizetype j) const |
qsizetype | operator-(ConstIterator other) const |
ConstIterator & | operator--() |
ConstIterator | operator--(int) |
ConstIterator & | operator-=(qsizetype j) |
const QCborValueConstRef * | operator->() const |
bool | operator<(const Iterator &other) const |
bool | operator<(const ConstIterator &other) const |
bool | operator<=(const Iterator &other) const |
bool | operator<=(const ConstIterator &other) const |
bool | operator==(const Iterator &other) const |
bool | operator==(const ConstIterator &other) const |
bool | operator>(const Iterator &other) const |
bool | operator>(const ConstIterator &other) const |
bool | operator>=(const Iterator &other) const |
bool | operator>=(const ConstIterator &other) const |
QCborValueConstRef | operator[](qsizetype j) const |
QCborArray::ConstIterator allows you to iterate over a QCborArray. If you want to modify the QCborArray as you iterate over it, use QCborArray::Iterator instead. It is generally good practice to use QCborArray::ConstIterator, even on a non-const QCborArray, when you don't need to change the QCborArray through the iterator. Const iterators are slightly faster and improves code readability.
Iterators are initialized by using a QCborArray function like QCborArray::begin() or QCborArray::end(). Iteration is only possible after that.
Most QCborArray functions accept an integer index rather than an iterator. For that reason, iterators are rarely useful in connection with QCborArray. One place where STL-style iterators do make sense is as arguments to generic algorithms.
Multiple iterators can be used on the same array. However, be aware that any non-const function call performed on the QCborArray will render all existing iterators undefined.
See also QCborArray::Iterator.
A synonym for std::random_access_iterator_tag indicating this iterator is a random access iterator.
Returns true
if the entry in the array pointed to by this iterator occurs after or is the same entry as is pointed to by the other iterator.
Returns true
if the entry in the array pointed to by this iterator occurs after the entry pointed to by the other iterator.
Returns true
if the entry in the array pointed to by this iterator occurs before or is the same entry as is pointed to by the other iterator.
Returns true
if the entry in the array pointed to by this iterator occurs before the entry pointed to by the other iterator.
Returns true
if o points to a different entry in the array than this iterator; otherwise returns false
.
See also operator==().
Returns true
if other points to the same entry in the array as this iterator; otherwise returns false
.
See also operator!=().
Constructs a copy of other.
Constructs an uninitialized iterator.
Functions like operator*() and operator++() should not be called on an uninitialized iterator. Use operator=() to assign a value to it before using it.
See also QCborArray::constBegin() and QCborArray::constEnd().
Makes this iterator a copy of other and returns a reference to this iterator.
Returns the current item.
Returns an iterator to the item at a position j steps forward from this iterator. If j is negative, the iterator goes backward.
See also operator-() and operator+=().
The prefix ++ operator, ++it
, advances the iterator to the next item in the array and returns this iterator.
Calling this function on QCborArray::end() leads to undefined results.
See also operator--().
This is an overloaded function.
The postfix ++ operator, it++
, advances the iterator to the next item in the array and returns an iterator to the previously current item.
Advances the iterator by j positions. If j is negative, the iterator goes backward. Returns a reference to this iterator.
See also operator-=() and operator+().
Returns an iterator to the item at a position j steps backward from this iterator. If j is negative, the iterator goes forward.
See also operator+() and operator-=().
Returns the offset of this iterator relative to other.
The prefix -- operator, --it
, makes the preceding item current and returns this iterator.
Calling this function on QCborArray::begin() leads to undefined results.
See also operator++().
This is an overloaded function.
The postfix -- operator, it--
, makes the preceding item current and returns an iterator to the previously current item.
Makes the iterator go back by j positions. If j is negative, the iterator goes forward. Returns a reference to this iterator.
See also operator+=() and operator-().
Returns a pointer to the current item.
Returns the item at a position j steps forward from the item pointed to by this iterator.
This function is provided to make QCborArray iterators behave like C++ pointers.
See also operator+().