Interface for an iterator that can go in both directions.
|
$hasPrevious()
bool @public | Returns TRUE when there is an item to fetch with previous().
|
|
$previous()
Titem @public | Returns the previous item and advances backwards.
|
|
$peekPreviousSupported()
bool @public | Returns TRUE when peekPrevious() is supported.
|
|
$peekPrevious()
Titem @public | Returns the previous item without advancing.
|
|
Inherited from I.Iterator:
|
|
$hasNext()
bool @public | Returns TRUE when there is another item to fetch.
|
|
$next()
Titem @public | Returns the next item and advances.
|
|
$peekSupported()
bool @public | Returns TRUE when peek() is supported.
|
|
$peek()
Titem @public | Returns the next item without advancing.
|
|