54 abstract function accept();
62 while ($this->it->valid()) {
84 return $this->it->valid();
91 return $this->it->key();
98 return $this->it->current();
123 return call_user_func_array(array($this->it, $func), $params);
Interface to access the current inner iteraor of iterator wrappers.
next()
Move to next element.
fetch()
Fetch next element and store it.
Abstract filter for iterators.
__construct(Iterator $it)
Constructs a filter around another iterator.
rewind()
Rewind the inner iterator.
__call($func, $params)
Aggregate the inner iterator.
accept()
Accept function to decide whether an element of the inner iterator should be accessible through the F...