Qore Programming Language Reference Manual 1.19.2
Loading...
Searching...
No Matches
QC_HashListReverseIterator.dox.h
1
2namespace Qore {
4
45
46public:
48
55 constructor(hash<auto> h);
56
57public:
59
66
67public:
69
75
76public:
78
91bool first();
92
93public:
95
108bool last();
109
110public:
112
132auto memberGate(string key);
133
134public:
136
150bool next();
151
152public:
154
168bool prev();
169};
170}
This class an iterator class for hashes of lists as returned by Qore::SQL::Datasource::select() and Q...
Definition: QC_HashListIterator.dox.h:38
This class a reverse iterator class for hashes of lists as returned by Qore::SQL::Datasource::select(...
Definition: QC_HashListReverseIterator.dox.h:44
constructor(hash< auto > h)
Creates the hash list iterator object.
bool prev()
Moves the current position to the previous element in the result list; returns False if there are no ...
bool first()
returns True if on the first element being iterated in the list (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...
constructor()
Creates an empty hash list iterator object.
copy()
Creates a copy of the HashListReverseIterator 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...
bool last()
returns True if on the last element being iterated in the list (ie the first element in the list)
Qore namespace.
Definition: QC_AbstractSmartLock.dox.h:2