Qore Programming Language Reference Manual 1.19.2
Loading...
Searching...
No Matches
QC_HashReverseIterator.dox.h
1
2namespace Qore {
4
34
35public:
37
44 constructor(hash<auto> h);
45
46public:
48
55
56public:
58
64
65public:
67
80bool first();
81
82public:
84
97bool last();
98
99public:
101
118bool next();
119
120public:
122
139bool prev();
140};
141}
This class an iterator class for hashes.
Definition: QC_HashIterator.dox.h:28
This class an iterator class for hashes.
Definition: QC_HashReverseIterator.dox.h:33
bool prev()
Moves the current position to the next element in the hash; returns False if there are no more elemen...
constructor()
Creates an empty iterator object.
copy()
Creates a copy of the HashReverseIterator object, iterating the same object as the original and in th...
bool next()
Moves the current position to the previous element in the hash; returns False if there are no more el...
bool first()
returns True if on the last element of the hash
bool last()
returns True if on the first element of the hash
constructor(hash< auto > h)
Creates the hash iterator object.
Qore namespace.
Definition: QC_AbstractSmartLock.dox.h:2