Qore Programming Language Reference Manual 1.19.2
Loading...
Searching...
No Matches
QC_AbstractIterator.dox.h
1
2namespace Qore {
4
11
12public:
14
27abstract auto getValue();
28
29public:
31
43abstract bool next();
44
45public:
47
55abstract bool valid();
56};
57}
This class defines an abstract interface for iterators.
Definition: QC_AbstractIterator.dox.h:10
abstract auto getValue()
returns the current value
abstract bool next()
Moves the current position to the next element; returns False if there are no more elements.
abstract bool valid()
returns True if the iterator is currently pointing at a valid element, False if not
Qore namespace.
Definition: QC_AbstractSmartLock.dox.h:2