Qore Programming Language Reference Manual 1.19.2
Loading...
Searching...
No Matches
QC_ListReverseIterator.dox.h
1
2namespace Qore {
4
33
34public:
36
45 constructor(softlist<auto> l);
46
47public:
49
55
56public:
58
71bool first();
72
73public:
75
88bool last();
89
90public:
92
109bool next();
110
111public:
113
130bool prev();
131};
132}
This class an iterator class for lists.
Definition: QC_ListIterator.dox.h:28
This class an iterator class for lists.
Definition: QC_ListReverseIterator.dox.h:32
copy()
Creates a copy of the ListReverseIterator object, iterating the same object as the original and in th...
bool first()
returns True if on the first element iterated with this iterator (ie the last element in the list)
bool last()
returns True if on the last element iterated with this iterator (ie the first element in the list)
bool next()
Moves the current position to the previous element in the list; returns False if there are no more el...
constructor(softlist< auto > l)
Creates the list iterator object.
bool prev()
Moves the current position to the next element in the list; returns False if there are no more elemen...
Qore namespace.
Definition: QC_AbstractSmartLock.dox.h:2