QList< T >::const_iterator Class Reference
#include <qlist.h>
template<typename T>
class QList< T >::const_iterator
Definition at line 228 of file qlist.h.
const T& operator* |
( |
| ) |
const |
|
inline |
const T* operator-> |
( |
void |
| ) |
const |
|
inline |
const T& operator[] |
( |
int |
j | ) |
const |
|
inline |
Definition at line 250 of file qlist.h.
250 {
return i < other.i; }
Definition at line 251 of file qlist.h.
251 {
return i <= other.i; }
Definition at line 252 of file qlist.h.
252 {
return i > other.i; }
Definition at line 253 of file qlist.h.
253 {
return i >= other.i; }
Definition at line 254 of file qlist.h.
254 { ++
i;
return *
this; }
Definition at line 255 of file qlist.h.
255 { Node *
n =
i; ++
i;
return n; }
Definition at line 256 of file qlist.h.
256 {
i--;
return *
this; }
Definition at line 257 of file qlist.h.
257 { Node *
n =
i;
i--;
return n; }
Definition at line 258 of file qlist.h.
258 {
i+=j;
return *
this; }
Definition at line 259 of file qlist.h.
259 {
i-=j;
return *
this; }
The documentation for this class was generated from the following file: