Inherits Doctrine_Collection_Iterator.
Definition at line 33 of file Expandable.php.
| Doctrine_Collection_Iterator::current |
( |
| ) |
|
|
inherited |
| Doctrine_Collection_Iterator::key |
( |
| ) |
|
|
inherited |
returns the current key
- Returns
- integer
Definition at line 91 of file Iterator.php.
| Doctrine_Collection_Iterator::next |
( |
| ) |
|
|
inherited |
advances the internal pointer
- Returns
- void
Definition at line 111 of file Iterator.php.
{
$this->index++;
$i = $this->index;
if (isset($this->keys[$i])) {
$this->
key = $this->keys[$i];
}
}
| Doctrine_Collection_Iterator::rewind |
( |
| ) |
|
|
inherited |
rewinds the iterator
- Returns
- void
Definition at line 77 of file Iterator.php.
{
$this->index = 0;
$i = $this->index;
if (isset($this->keys[$i])) {
$this->
key = $this->keys[$i];
}
}
The documentation for this class was generated from the following file: