Iterators
PHP Manual

The InfiniteIterator class

(PHP 5 >= 5.1.0, PHP 7)

소개

The InfiniteIterator allows one to infinitely iterate over an iterator without having to manually rewind the iterator upon reaching its end.

클래스 개요

InfiniteIterator extends IteratorIterator implements OuterIterator {
/* 메소드 */
public __construct ( Iterator $iterator )
public void next ( void )
/* 상속된 메소드 */
public mixed IteratorIterator::current ( void )
public Traversable IteratorIterator::getInnerIterator ( void )
public scalar IteratorIterator::key ( void )
public void IteratorIterator::next ( void )
public void IteratorIterator::rewind ( void )
public bool IteratorIterator::valid ( void )
}

Table of Contents


Iterators
PHP Manual