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