ResultIterator
class ResultIterator implements Iterator, Countable
External result set iterator.
Methods
void
rewind()
Rewinds the iterator to the first element.
key()
No description
current()
No description
void
next()
Moves forward to next element.
bool
valid()
Checks if there is a current element after calls to rewind() or next().
int
count()
Required by the Countable interface.
Details
at line 30
__construct(Result $result)
No description
at line 39
void
rewind()
Rewinds the iterator to the first element.
at line 47
key()
No description
at line 58
current()
No description
at line 72
void
next()
Moves forward to next element.
at line 82
bool
valid()
Checks if there is a current element after calls to rewind() or next().
at line 91
int
count()
Required by the Countable interface.
Traits
Better OOP experience.