Qore Programming Language Reference Manual  0.9.16
Qore::AbstractIterator Class Referenceabstract

This class defines an abstract interface for iterators. More...

Inheritance diagram for Qore::AbstractIterator:

Public Member Methods

abstract any getValue ()
 returns the current value More...
 
abstract bool next ()
 Moves the current position to the next element; returns False if there are no more elements. More...
 
abstract bool valid ()
 returns True if the iterator is currently pointing at a valid element, False if not More...
 

Detailed Description

This class defines an abstract interface for iterators.

Classes inheriting this class can be used to iterate abstract or complex objects with while Statements (using AbstractIterator::next()) or directly in the following language constructs:

Member Function Documentation

◆ getValue()

◆ next()

abstract bool Qore::AbstractIterator::next ( )
pure virtual

Moves the current position to the next element; returns False if there are no more elements.

This method will return True again after it returns False once if the object being iterated is not empty, otherwise it will always return False. The iterator object should not be used after this method returns False

Returns
False if there are no more elements (in which case the iterator object is invalid and should not be used); True if successful (meaning that the iterator object is valid)
Example:
while (i.next()) {
printf(" + %y\n", i.getValue());
}

Implemented in Qore::SQL::SQLStatement, Qore::SQL::AbstractSQLStatement, Qore::HashListIterator, Qore::ListHashIterator, Qore::HashIterator, Qore::FileLineIterator, Qore::ListIterator, Qore::HashListReverseIterator, Qore::InputStreamLineIterator, Qore::DataLineIterator, Qore::ListHashReverseIterator, Qore::ObjectReverseIterator, Qore::HashReverseIterator, Qore::RangeIterator, Qore::ListReverseIterator, Qore::AbstractLineIterator, and Qore::SingleValueIterator.

◆ valid()

abstract bool Qore::AbstractIterator::valid ( )
pure virtual

returns True if the iterator is currently pointing at a valid element, False if not

Returns
True if the iterator is currently pointing at a valid element, False if not
Example:
if (i.valid())
printf("current value: %y\n", i.getValue());

Implemented in Qore::SQL::SQLStatement, Qore::SQL::AbstractSQLStatement, Qore::HashListIterator, Qore::ListHashIterator, Qore::HashIterator, Qore::FileLineIterator, Qore::ListIterator, Qore::DataLineIterator, Qore::InputStreamLineIterator, Qore::RangeIterator, Qore::AbstractLineIterator, and Qore::SingleValueIterator.

Qore::printf
string printf(string fmt,...)
Outputs the string passed to standard output, using the first argument as a format string; does not e...