Inheritance diagram for EmptyIterator:


Public Member Functions | |
| current () | |
| key () | |
| next () | |
| rewind () | |
| valid () | |
Definition at line 18 of file emptyiterator.inc.
| EmptyIterator::current | ( | ) |
This function must not be called.
It throws an exception upon access.
| Exception |
Implements Iterator.
Definition at line 39 of file emptyiterator.inc.
00040 { 00041 throw new Exception('Accessing the value of an EmptyIterator'); 00042 }
| EmptyIterator::key | ( | ) |
This function must not be called.
It throws an exception upon access.
| Exception |
Implements Iterator.
Definition at line 48 of file emptyiterator.inc.
00049 { 00050 throw new Exception('Accessing the key of an EmptyIterator'); 00051 }
| EmptyIterator::next | ( | ) |
| EmptyIterator::rewind | ( | ) |
| EmptyIterator::valid | ( | ) |
1.5.2