Qore Programming Language Reference Manual
0.8.7
Main Page
Related Pages
Modules
Namespaces
Classes
All
Classes
Namespaces
Functions
Variables
Groups
Pages
QC_ListHashIterator.dox.h
1
2
namespace
Qore {
4
14
class
ListHashIterator
:
public
AbstractQuantifiedBidirectionalIterator
{
15
16
public
:
18
27
constructor
(softlist l);
28
29
public
:
31
36
copy
();
37
38
public
:
40
51
bool
empty
();
52
53
public
:
55
68
bool
first
();
69
70
public
:
72
91
any
getKeyValue
(
string
key);
92
93
public
:
95
112
hash
getRow
();
113
114
public
:
116
134
hash
getValue
();
135
136
public
:
138
150
int
index
();
151
152
public
:
154
167
bool
last
();
168
169
public
:
171
183
int
max
();
184
185
public
:
187
206
any
memberGate
(
string
key);
207
208
public
:
210
224
bool
next
();
225
226
public
:
228
242
bool
prev
();
243
244
public
:
246
255
reset
();
256
257
public
:
259
271
bool
set
(
int
pos);
272
273
public
:
275
286
bool
valid
();
287
};
288
};