|
Qore Mapper Module Reference
1.0
|
abstract base class for hash iterator mappping classes based on a mapper object and an iterator input source More...

Public Member Functions | |
| constructor (Qore::AbstractIterator i) | |
| creates the iterator from the arguments passed More... | |
| bool | next () |
| Moves the current position of the input iterator to the next element; returns False if there are no more elements. | |
| bool | valid () |
| returns True if the input iterator is currently pointing at a valid element, False if not | |
Private Attributes | |
| Qore::AbstractIterator | i |
| input iterator; AbstractIterator::getValue() must return a hash | |
abstract base class for hash iterator mappping classes based on a mapper object and an iterator input source
| Mapper::AbstractMapperIterator::constructor | ( | Qore::AbstractIterator | i | ) |
creates the iterator from the arguments passed
| i | input iterator; AbstractIterator::getValue() must return a hash |
| map | the mapper to transform the data |