Qt 6.x
The Qt SDK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
QCborArray::Iterator Class Reference

\inmodule QtCore More...

#include <qcborarray.h>

+ Collaboration diagram for QCborArray::Iterator:

Public Types

typedef std::random_access_iterator_tag iterator_category
 A synonym for {std::random_access_iterator_tag} indicating this iterator is a random access iterator.
 
typedef qsizetype difference_type
 
typedef QCborValue value_type
 
typedef QCborValueRef reference
 
typedef QCborValueRef * pointer
 

Public Member Functions

constexpr Iterator ()=default
 Constructs an uninitialized iterator.
 
constexpr Iterator (const Iterator &)=default
 Makes a copy of other.
 
Iteratoroperator= (const Iterator &other)
 Makes this iterator a copy of other and returns a reference to this iterator.
 
QCborValueRef operator* () const
 Returns a modifiable reference to the current item.
 
QCborValueRef * operator-> ()
 
const QCborValueConstRefoperator-> () const
 Returns a pointer to a modifiable reference to the current item.
 
QCborValueRef operator[] (qsizetype j) const
 Returns a modifiable reference to the item at a position j steps forward from the item pointed to by this iterator.
 
bool operator== (const Iterator &o) const
 
bool operator!= (const Iterator &o) const
 
bool operator< (const Iterator &other) const
 
bool operator<= (const Iterator &other) const
 
bool operator> (const Iterator &other) const
 
bool operator>= (const Iterator &other) const
 
bool operator== (const ConstIterator &o) const
 Returns true if other points to the same entry in the array as this iterator; otherwise returns false.
 
bool operator!= (const ConstIterator &o) const
 Returns true if other points to a different entry in the array than this iterator; otherwise returns false.
 
bool operator< (const ConstIterator &other) const
 Returns true if the entry in the array pointed to by this iterator occurs before the entry pointed to by the other iterator.
 
bool operator<= (const ConstIterator &other) const
 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.
 
bool operator> (const ConstIterator &other) const
 Returns true if the entry in the array pointed to by this iterator occurs after the entry pointed to by the other iterator.
 
bool operator>= (const ConstIterator &other) const
 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.
 
Iteratoroperator++ ()
 The prefix {++} operator, {++it}, advances the iterator to the next item in the array and returns this iterator.
 
Iterator operator++ (int)
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.The postfix {++} operator, {it++}, advances the iterator to the next item in the array and returns an iterator to the previously current item.
 
Iteratoroperator-- ()
 The prefix {–} operator, {–it}, makes the preceding item current and returns this iterator.
 
Iterator operator-- (int)
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.The postfix {–} operator, {it–}, makes the preceding item current and returns an iterator to the previously current item.
 
Iteratoroperator+= (qsizetype j)
 Advances the iterator by j positions.
 
Iteratoroperator-= (qsizetype j)
 Makes the iterator go back by j positions.
 
Iterator operator+ (qsizetype j) const
 Returns an iterator to the item at position j steps forward from this iterator.
 
Iterator operator- (qsizetype j) const
 Returns an iterator to the item at position j steps backward from this iterator.
 
qsizetype operator- (Iterator j) const
 Returns the offset of this iterator relative to other.
 

Friends

class ConstIterator
 
class QCborArray
 

Detailed Description

\inmodule QtCore

Since
5.12

The QCborArray::Iterator class provides an STL-style non-const iterator for QCborArray.

QCborArray::Iterator allows you to iterate over a QCborArray and to modify the array item associated with the iterator. If you want to iterate over a const QCborArray, use QCborArray::ConstIterator instead. It is generally a good practice to use QCborArray::ConstIterator on a non-const QCborArray as well, unless you need to change the QCborArray through the iterator. Const iterators are slightly faster and improve code readability.

Iterators are initialized by using a QCborArray function like QCborArray::begin(), QCborArray::end(), or QCborArray::insert(). 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 \l{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::ConstIterator

Definition at line 23 of file qcborarray.h.

Member Typedef Documentation

◆ difference_type

◆ iterator_category

A synonym for {std::random_access_iterator_tag} indicating this iterator is a random access iterator.

Definition at line 29 of file qcborarray.h.

◆ pointer

Definition at line 33 of file qcborarray.h.

◆ reference

Definition at line 32 of file qcborarray.h.

◆ value_type

Definition at line 31 of file qcborarray.h.

Constructor & Destructor Documentation

◆ Iterator() [1/2]

QCborArray::Iterator::Iterator ( )
constexprdefault

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::begin(), QCborArray::end()

◆ Iterator() [2/2]

QCborArray::Iterator::Iterator ( const Iterator other)
constexprdefault

Makes a copy of other.

Member Function Documentation

◆ operator!=() [1/2]

bool QCborArray::Iterator::operator!= ( const ConstIterator other) const
inline

Returns true if other points to a different entry in the array than this iterator; otherwise returns false.

See also
operator==()

Definition at line 57 of file qcborarray.h.

References o.

◆ operator!=() [2/2]

bool QCborArray::Iterator::operator!= ( const Iterator o) const
inline

Definition at line 51 of file qcborarray.h.

References o.

◆ operator*()

QCborValueRef QCborArray::Iterator::operator* ( ) const
inline

Returns a modifiable reference to the current item.

You can change the value of an item by using operator*() on the left side of an assignment.

The return value is of type QCborValueRef, a helper class for QCborArray and QCborMap. When you get an object of type QCborValueRef, you can use it as if it were a reference to a QCborValue. If you assign to it, the assignment will apply to the element in the QCborArray or QCborMap from which you got the reference.

Definition at line 45 of file qcborarray.h.

References item.

◆ operator+()

QCborArray::Iterator QCborArray::Iterator::operator+ ( qsizetype  j) const
inline

Returns an iterator to the item at position j steps forward from this iterator.

If j is negative, the iterator goes backward.

See also
operator-(), operator+=()

Definition at line 68 of file qcborarray.h.

References item, and j.

◆ operator++() [1/2]

QCborArray::Iterator & QCborArray::Iterator::operator++ ( )
inline

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--()

Definition at line 62 of file qcborarray.h.

References item.

◆ operator++() [2/2]

QCborArray::Iterator QCborArray::Iterator::operator++ ( int  )
inline

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.The postfix {++} operator, {it++}, advances the iterator to the next item in the array and returns an iterator to the previously current item.

Definition at line 63 of file qcborarray.h.

References item.

◆ operator+=()

QCborArray::Iterator & QCborArray::Iterator::operator+= ( qsizetype  j)
inline

Advances the iterator by j positions.

If j is negative, the iterator goes backward. Returns a reference to this iterator.

See also
operator-=(), operator+()

Definition at line 66 of file qcborarray.h.

References item, and j.

◆ operator-() [1/2]

qsizetype QCborArray::Iterator::operator- ( Iterator  j) const
inline

Returns the offset of this iterator relative to other.

Definition at line 70 of file qcborarray.h.

References item, and j.

◆ operator-() [2/2]

QCborArray::Iterator QCborArray::Iterator::operator- ( qsizetype  j) const
inline

Returns an iterator to the item at position j steps backward from this iterator.

If j is negative, the iterator goes forward.

See also
operator+(), operator-=()

Definition at line 69 of file qcborarray.h.

References item, and j.

◆ operator--() [1/2]

QCborArray::Iterator & QCborArray::Iterator::operator-- ( )
inline

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++()

Definition at line 64 of file qcborarray.h.

References item.

◆ operator--() [2/2]

QCborArray::Iterator QCborArray::Iterator::operator-- ( int  )
inline

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.The postfix {–} operator, {it–}, makes the preceding item current and returns an iterator to the previously current item.

Definition at line 65 of file qcborarray.h.

References item.

◆ operator-=()

QCborArray::Iterator & QCborArray::Iterator::operator-= ( qsizetype  j)
inline

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+=(), operator-()

Definition at line 67 of file qcborarray.h.

References item, and j.

◆ operator->() [1/2]

QCborValueRef * QCborArray::Iterator::operator-> ( )
inline

Definition at line 46 of file qcborarray.h.

References item.

◆ operator->() [2/2]

QCborValueRef * QCborArray::Iterator::operator-> ( ) const
inline

Returns a pointer to a modifiable reference to the current item.

Definition at line 47 of file qcborarray.h.

References item.

◆ operator<() [1/2]

bool QCborArray::Iterator::operator< ( const ConstIterator other) const
inline

Returns true if the entry in the array pointed to by this iterator occurs before the entry pointed to by the other iterator.

Definition at line 58 of file qcborarray.h.

References item, other(), and Q_ASSERT.

+ Here is the call graph for this function:

◆ operator<() [2/2]

bool QCborArray::Iterator::operator< ( const Iterator other) const
inline

Definition at line 52 of file qcborarray.h.

References item, other(), and Q_ASSERT.

+ Here is the call graph for this function:

◆ operator<=() [1/2]

bool QCborArray::Iterator::operator<= ( const ConstIterator other) const
inline

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.

Definition at line 59 of file qcborarray.h.

References item, other(), and Q_ASSERT.

+ Here is the call graph for this function:

◆ operator<=() [2/2]

bool QCborArray::Iterator::operator<= ( const Iterator other) const
inline

Definition at line 53 of file qcborarray.h.

References item, other(), and Q_ASSERT.

+ Here is the call graph for this function:

◆ operator=()

QCborArray::Iterator & QCborArray::Iterator::operator= ( const Iterator other)
inline

Makes this iterator a copy of other and returns a reference to this iterator.

Definition at line 37 of file qcborarray.h.

References item, and other().

+ Here is the call graph for this function:

◆ operator==() [1/2]

bool QCborArray::Iterator::operator== ( const ConstIterator other) const
inline

Returns true if other points to the same entry in the array as this iterator; otherwise returns false.

See also
operator!=()

Definition at line 56 of file qcborarray.h.

References item, and o.

◆ operator==() [2/2]

bool QCborArray::Iterator::operator== ( const Iterator o) const
inline

Definition at line 50 of file qcborarray.h.

References item, and o.

◆ operator>() [1/2]

bool QCborArray::Iterator::operator> ( const ConstIterator other) const
inline

Returns true if the entry in the array pointed to by this iterator occurs after the entry pointed to by the other iterator.

Definition at line 60 of file qcborarray.h.

References item, other(), and Q_ASSERT.

+ Here is the call graph for this function:

◆ operator>() [2/2]

bool QCborArray::Iterator::operator> ( const Iterator other) const
inline

Definition at line 54 of file qcborarray.h.

References item, other(), and Q_ASSERT.

+ Here is the call graph for this function:

◆ operator>=() [1/2]

bool QCborArray::Iterator::operator>= ( const ConstIterator other) const
inline

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.

Definition at line 61 of file qcborarray.h.

References item, other(), and Q_ASSERT.

+ Here is the call graph for this function:

◆ operator>=() [2/2]

bool QCborArray::Iterator::operator>= ( const Iterator other) const
inline

Definition at line 55 of file qcborarray.h.

References item, other(), and Q_ASSERT.

+ Here is the call graph for this function:

◆ operator[]()

QCborValueRef QCborArray::Iterator::operator[] ( qsizetype  j) const
inline

Returns a modifiable reference to 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.

The return value is of type QCborValueRef, a helper class for QCborArray and QCborMap. When you get an object of type QCborValueRef, you can use it as if it were a reference to a QCborValue. If you assign to it, the assignment will apply to the element in the QCborArray or QCborMap from which you got the reference.

See also
operator+()

Definition at line 48 of file qcborarray.h.

References item, and j.

Friends And Related Symbol Documentation

◆ ConstIterator

friend class ConstIterator
friend

Definition at line 25 of file qcborarray.h.

◆ QCborArray

friend class QCborArray
friend

Definition at line 26 of file qcborarray.h.


The documentation for this class was generated from the following files: