The OuterIterator interface

(PHP 5 >= 5.1.0)

簡介

Classes implementing OuterIterator can be used to iterate over iterators.

介面摘要

OuterIterator extends Iterator {
/* 方法 */
public Iterator getInnerIterator ( void )
/* 繼承的方法 */
abstract public mixed Iterator::current ( void )
abstract public scalar Iterator::key ( void )
abstract public void Iterator::next ( void )
abstract public void Iterator::rewind ( void )
abstract public boolean Iterator::valid ( void )
}

Table of Contents

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top