Inherits Doctrine_Collection_Iterator.
Definition at line 33 of file Normal.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];
}
}
| Doctrine_Collection_Iterator_Normal::valid |
( |
| ) |
|
- Returns
- boolean whether or not the iteration will continue
Definition at line 38 of file Normal.php.
{
return ($this->index < $this->count);
}
The documentation for this class was generated from the following file:
- Doctrine-1.2.4/Doctrine/Collection/Iterator/Normal.php