e6b6aa0b09
I noticed that directorty structure of hphp/system was a bit scattered, so I consolidated things to reduce the total number of folders and to put related things together with each other. This diff moves the contents of "hphp/system/classes_hhvm" into "hphp/system", it moves the contents of "hphp/system/lib" into "hphp/system", moves "hphp/idl" to "hphp/system/idl", and moves the contents of "hphp/system/globals" into "hphp/system/idl".
26 linhas
639 B
PHP
26 linhas
639 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 {
|
|
}
|