|
The IteratorIterator classIntroductionThis iterator wrapper allows the conversion of anything that is Traversable into an Iterator. It is important to understand that most classes that do not implement Iterators have reasons as most likely they do not allow the full Iterator feature set. If so, techniques should be provided to prevent misuse, otherwise expect exceptions or fatal errors. Class synopsis
IteratorIterator
implements
OuterIterator
/* Methods */
public __construct(Traversable
$iterator , stringnull $class = null )public mixed current()
public Iteratornull getInnerIterator()
public mixed key()
public void next()
public void rewind()
public bool valid()
Notes
|