Qore Programming Language Reference Manual
0.9.11
QC_AbstractQuantifiedIterator.dox.h
1
namespace
Qore
{
4
/***/
5
class
AbstractQuantifiedIterator
:
public
AbstractIterator
{
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
}
Qore::AbstractQuantifiedIterator::empty
abstract bool empty()
returns True if the object to iterate is empty; False if not
Qore::AbstractQuantifiedIterator
This class defines an abstract interface for iterators where the size of the object being iterated is...
Definition:
QC_AbstractQuantifiedIterator.dox.h:5
Qore::AbstractQuantifiedIterator::last
abstract bool last()
returns True if on the last element
Qore::AbstractQuantifiedIterator::first
abstract bool first()
returns True if on the first element
Qore::AbstractIterator
This class defines an abstract interface for iterators.
Definition:
QC_AbstractIterator.dox.h:10
Qore
main Qore-language namespace
Definition:
Pseudo_QC_All.dox.h:3