Qore Programming Language Reference Manual  0.8.7
 All Classes Namespaces Functions Variables Groups Pages
QC_RangeIterator.dox.h
1 
2 namespace Qore {
4 
30 
31 public:
33 
44  constructor(int start, int stop, int step = 1);
45 
46 public:
48 
53  copy();
54 
55 public:
57 
72 any getValue();
73 
74 public:
76 
89 bool next();
90 
91 public:
93 
118  reset();
119 };
120 };
121 
123 namespace Qore {
142 
144 
171 RangeIterator xrange(int start, int stop, int step = 1);
172 
174 
195 RangeIterator xrange(int stop);
196 
198 };