Arquivos
hhvm/hphp/system/php/lang/IteratorAggregate.php
T
bsimmers 77dea1bdd0 Temporarily remove Iterable's function declarations
D923036 added these but we're not quite ready. Take them out for now.

Differential Revision: D944660
2013-08-29 11:58:35 -07:00

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 {
}