Qore Programming Language Reference Manual 1.19.2
Loading...
Searching...
No Matches
QC_ObjectReverseIterator.dox.h
1
2namespace Qore {
4
43
44public:
46
53 constructor(object o);
54
55public:
57
64
65public:
67
73
74public:
76
89bool first();
90
91public:
93
106bool last();
107
108public:
110
127bool next();
128
129public:
131
148bool prev();
149};
150}
This class a basic iterator class for objects.
Definition: QC_ObjectIterator.dox.h:37
This class an iterator class for objects.
Definition: QC_ObjectReverseIterator.dox.h:42
bool next()
Moves the current position to the previous element in the object; returns False if there are no more ...
constructor(object o)
Creates the object iterator object.
copy()
Creates a copy of the ObjectReverseIterator object, iterating the same object as the original and in ...
constructor()
Creates an empty iterator object.
bool first()
returns True if on the last element of the object
bool prev()
Moves the current position to the next element in the object; returns False if there are no more elem...
bool last()
returns True if on the first element of the object
Qore namespace.
Definition: QC_AbstractSmartLock.dox.h:2