Qore Programming Language Reference Manual
0.8.7
Main Page
Related Pages
Modules
Namespaces
Classes
All
Classes
Namespaces
Functions
Variables
Groups
Pages
QC_ListIterator.dox.h
1
2
namespace
Qore {
4
14
class
ListIterator
:
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
87
any
getValue
();
88
89
public
:
91
103
int
index
();
104
105
public
:
107
120
bool
last
();
121
122
public
:
124
136
int
max
();
137
138
public
:
140
154
bool
next
();
155
156
public
:
158
172
bool
prev
();
173
174
public
:
176
185
reset
();
186
187
public
:
189
201
bool
set
(
int
pos);
202
203
public
:
205
216
bool
valid
();
217
};
218
};