77dea1bdd0
D923036 added these but we're not quite ready. Take them out for now. Differential Revision: D944660
27 linhas
640 B
PHP
27 linhas
640 B
PHP
<?php
|
|
|
|
// This doc comment block generated by idl/sysdoc.php
|
|
/**
|
|
* ( excerpt from http://php.net/manual/en/class.iteratoraggregate.php )
|
|
*
|
|
* Interface to create an external Iterator.
|
|
*
|
|
*/
|
|
interface IteratorAggregate extends Traversable {
|
|
// This doc comment block generated by idl/sysdoc.php
|
|
/**
|
|
* ( excerpt from
|
|
* http://php.net/manual/en/iteratoraggregate.getiterator.php )
|
|
*
|
|
* Returns an external iterator.
|
|
*
|
|
* @return mixed An instance of an object implementing Iterator or
|
|
* Traversable
|
|
*/
|
|
public function getIterator();
|
|
}
|
|
|
|
interface Iterable extends IteratorAggregate {
|
|
}
|
|
|