Qore Programming Language Reference Manual  0.8.9
 All Classes Namespaces Functions Variables Groups Pages
QC_AbstractQuantifiedIterator.dox.h
1 namespace Qore {
4 /***/
6 
7 public:
9 
17 abstract bool empty();
18 
19 public:
21 
31 abstract bool first();
32 
33 public:
35 
45 abstract bool last();
46 };
47 };
abstract bool first()
returns True if on the first element
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 empty()
returns True if the object to iterate is empty; False if not
abstract bool last()
returns True if on the last element
This class defines an abstract interface for iterators.
Definition: QC_AbstractIterator.dox.h:10