![]() |
Qt 6.x
The Qt SDK
|
#include <qsequentialiterable.h>
Public Types | |
using | value_type = QVariant |
using | reference = const QVariant & |
using | pointer = QVariantConstPointer |
![]() | |
using | difference_type = qsizetype |
Public Member Functions | |
QSequentialConstIterator (QConstIterator &&it) | |
QVariant | operator* () const |
Returns the current item, converted to a QVariant. | |
QVariantConstPointer | operator-> () const |
Returns the current item, converted to a QVariantConstPointer. | |
![]() | |
QConstIterator (const QIterable< QMetaSequence > *iterable, void *iterator) | |
Creates a QConstIterator to wrap iterator, operating on iterable. | |
bool | operator== (const QConstIterator &o) const |
Returns true if other points to the same item as this iterator; otherwise returns false . | |
bool | operator!= (const QConstIterator &o) const |
Returns true if other points to a different item than this iterator; otherwise returns false . | |
QConstIterator & | operator++ () |
The prefix {++} operator ( {++it}) advances the iterator to the next item in the container and returns an iterator to the new current item. | |
QConstIterator | 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 container and returns an iterator to the previously current item. | |
QConstIterator & | operator-- () |
The prefix {–} operator ( {–it}) makes the preceding item current and returns an iterator to the new current item. | |
QConstIterator | 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. | |
QConstIterator & | operator+= (qsizetype j) |
Advances the iterator by j items. | |
QConstIterator & | operator-= (qsizetype j) |
Makes the iterator go back by j items. | |
QConstIterator | operator+ (qsizetype j) const |
Returns an iterator to the item at j positions forward from this iterator. | |
QConstIterator | operator- (qsizetype j) const |
Returns an iterator to the item at j positions backward from this iterator. | |
qsizetype | operator- (const QConstIterator &j) const |
Returns the distance between the two iterators. | |
![]() | |
void * | mutableIterator () |
Returns a non-const pointer to the internal native iterator. | |
const void * | constIterator () const |
Returns a const pointer to the internal native iterator. | |
Container | metaContainer () const |
Additional Inherited Members | |
![]() | |
QBaseIterator ()=default | |
QBaseIterator (const QIterable< Container > *iterable, void *iterator) | |
QBaseIterator (QIterable< Container > *iterable, void *iterator) | |
QBaseIterator (QBaseIterator &&other) | |
QBaseIterator (const QBaseIterator &other) | |
~QBaseIterator () | |
QBaseIterator & | operator= (QBaseIterator &&other) |
QBaseIterator & | operator= (const QBaseIterator &other) |
QIterable< Container > * | mutableIterable () const |
const QIterable< Container > * | constIterable () const |
void | initIterator (const void *copy) |
void | clearIterator () |
Definition at line 27 of file qsequentialiterable.h.
Definition at line 32 of file qsequentialiterable.h.
using QSequentialConstIterator::reference = const QVariant & |
Definition at line 31 of file qsequentialiterable.h.
Definition at line 30 of file qsequentialiterable.h.
|
inline |
Definition at line 34 of file qsequentialiterable.h.
QVariant QSequentialConstIterator::operator* | ( | ) | const |
Returns the current item, converted to a QVariant.
Definition at line 200 of file qsequentialiterable.cpp.
References QBaseIterator< Container >::constIterator(), QBaseIterator< Container >::metaContainer(), and QIterablePrivate::retrieveElement().
QVariantConstPointer QSequentialConstIterator::operator-> | ( | ) | const |
Returns the current item, converted to a QVariantConstPointer.
Definition at line 210 of file qsequentialiterable.cpp.