![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
#include <qlist.h>
Public Types | |
using | difference_type = qsizetype |
using | value_type = T |
using | element_type = value_type |
using | iterator_category = std::random_access_iterator_tag |
using | pointer = T * |
using | reference = T & |
Public Member Functions | |
constexpr | iterator ()=default |
T & | operator* () const |
T * | operator-> () const |
T & | operator[] (qsizetype j) const |
constexpr bool | operator== (iterator o) const |
constexpr bool | operator!= (iterator o) const |
constexpr bool | operator< (iterator other) const |
constexpr bool | operator<= (iterator other) const |
constexpr bool | operator> (iterator other) const |
constexpr bool | operator>= (iterator other) const |
constexpr bool | operator== (const_iterator o) const |
constexpr bool | operator!= (const_iterator o) const |
constexpr bool | operator< (const_iterator other) const |
constexpr bool | operator<= (const_iterator other) const |
constexpr bool | operator> (const_iterator other) const |
constexpr bool | operator>= (const_iterator other) const |
constexpr bool | operator== (pointer p) const |
constexpr bool | operator!= (pointer p) const |
iterator & | operator++ () |
iterator | operator++ (int) |
iterator & | operator-- () |
iterator | operator-- (int) |
qsizetype | operator- (iterator j) const |
iterator & | operator+= (qsizetype j) |
iterator & | operator-= (qsizetype j) |
iterator | operator+ (qsizetype j) const |
iterator | operator- (qsizetype j) const |
Friends | |
class | QList< T > |
class | const_iterator |
iterator | operator+ (qsizetype j, iterator k) |
using QList< T >::iterator::element_type = value_type |
using QList< T >::iterator::iterator_category = std::random_access_iterator_tag |
using QList< T >::iterator::pointer = T * |
using QList< T >::iterator::reference = T & |
using QList< T >::iterator::value_type = T |
|
inlineconstexprdefault |
|
inlineconstexpr |
|
inline |
|
inline |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
friend |