Qore Programming Language Reference Manual  0.9.10
QC_HashListReverseIterator.dox.h
1 namespace Qore {
4 
45 
46 public:
48 
55  constructor(hash<auto> h);
56 
57 public:
59 
66 
67 public:
69 
74  copy();
75 
76 public:
78 
91 bool first();
92 
93 public:
95 
108 bool last();
109 
110 public:
112 
132 auto memberGate(string key);
133 
134 public:
136 
150 bool next();
151 
152 public:
154 
168 bool prev();
169 };
170 }
Qore::HashListReverseIterator::last
bool last()
returns True if on the last element being iterated in the list (ie the first element in the list)
Qore::HashListIterator
This class an iterator class for hashes of lists as returned by Qore::SQL::Datasource::select() and Q...
Definition: QC_HashListIterator.dox.h:38
Qore::HashListReverseIterator::copy
copy()
Creates a copy of the HashListReverseIterator object, iterating the same object as the original and i...
Qore::HashListReverseIterator::prev
bool prev()
Moves the current position to the previous element in the result list; returns False if there are no ...
Qore::HashListReverseIterator::memberGate
auto memberGate(string key)
This method allows the iterator to be dereferenced directly as a hash for the current row being itera...
Qore::HashListReverseIterator::next
bool next()
Moves the current position to the next element in the result list; returns False if there are no more...
Qore::HashListReverseIterator::first
bool first()
returns True if on the first element being iterated in the list (ie the last element in the list)
Qore::HashListReverseIterator::constructor
constructor(hash< auto > h)
Creates the hash list iterator object.
Qore::HashListReverseIterator
This class a reverse iterator class for hashes of lists as returned by Qore::SQL::Datasource::select(...
Definition: QC_HashListReverseIterator.dox.h:44
Qore::HashListReverseIterator::constructor
constructor()
Creates an empty hash list iterator object.
Qore
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3