Qore Programming Language Reference Manual 1.19.2
Loading...
Searching...
No Matches
QC_ListHashReverseIterator.dox.h
1
2namespace Qore {
4
36
37public:
39
48 constructor(softlist<auto> l);
49
50public:
52
58
59public:
61
74bool first();
75
76public:
78
91bool last();
92
93public:
95
114auto memberGate(string key);
115
116public:
118
132bool next();
133
134public:
136
150bool prev();
151};
152}
This class an iterator class for lists of hashes as returned by Qore::SQL::Datasource::selectRows() a...
Definition: QC_ListHashIterator.dox.h:30
This class a reverse iterator class for lists of hashes as returned by Qore::SQL::Datasource::selectR...
Definition: QC_ListHashReverseIterator.dox.h:35
bool prev()
Moves the current position to the previous element in the result list; returns False if there are no ...
bool last()
returns True if on the last element being iterated (ie the first element in the list)
copy()
Creates a copy of the ListHashReverseIterator object, iterating the same object as the original and i...
auto memberGate(string key)
This method allows the iterator to be dereferenced directly as a hash for the current row being itera...
constructor(softlist< auto > l)
Creates the list hash iterator object.
bool first()
returns True if on the first element being iterated (ie the last element in the list)
bool next()
Moves the current position to the next element in the result list; returns False if there are no more...
Qore namespace.
Definition: QC_AbstractSmartLock.dox.h:2