Qore Programming Language Reference Manual 1.19.2
Loading...
Searching...
No Matches
QC_AbstractQuantifiedIterator.dox.h
1
2namespace Qore {
4/***/
6
7public:
9
17abstract bool empty();
18
19public:
21
31abstract bool first();
32
33public:
35
45abstract bool last();
46};
47}
This class defines an abstract interface for iterators.
Definition: QC_AbstractIterator.dox.h:10
This class defines an abstract interface for iterators where the size of the object being iterated is...
Definition: QC_AbstractQuantifiedIterator.dox.h:5
abstract bool first()
returns True if on the first element
abstract bool last()
returns True if on the last element
abstract bool empty()
returns True if the object to iterate is empty; False if not
Qore namespace.
Definition: QC_AbstractSmartLock.dox.h:2