Builtin Interfaces.
INTERFACE |
Iterator<Titem> @public | The interface that all iterators must implement.
|
INTERFACE |
KeyIterator<Tkey, Titem> @public | The interface for an iterator that provides access to its current
position.
|
INTERFACE |
MutateIterator<Titem> @public | Interface for an iterator that can modify the container.
|
INTERFACE |
BidiIterator<Titem> @public | Interface for an iterator that can go in both directions.
|
INTERFACE |
BidiMutateIterator<Titem> @public | Interface for an iterator that can go in both directions and can modify
the container. The methods that can normally only be called after
$next() will also work after $previous().
|
INTERFACE |
Iterable<Titem> @public | Interface allowing a class to be iterated over.
|
INTERFACE |
KeyIterable<Tkey, Titem> @public | Interface allowing a class to be iterated over, with a key.
|
|