Qore Programming Language Reference Manual
0.8.6
Main Page
Related Pages
Modules
Namespaces
Classes
All
Classes
Namespaces
Functions
Variables
Groups
Pages
QC_XRangeIterator.dox.h
1
2
namespace
Qore {
4
29
class
XRangeIterator
:
public
AbstractIterator
{
30
31
public
:
33
44
constructor
(
int
start,
int
stop,
int
step = 1);
45
46
public
:
48
63
any
getValue
();
64
65
public
:
67
80
bool
next
();
81
82
public
:
84
110
reset
();
111
};
112
};
113
115
namespace
Qore {
134
136
163
XRangeIterator
xrange
(
int
start,
int
stop,
int
step = 1);
164
166
187
XRangeIterator
xrange
(
int
stop);
188
190
};