1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 02:02:32 +01:00
Files
archived-php-src/ext/spl/examples/outeriterator.inc
Marcus Boerger 42bc4cd0ca Add new examples
2004-09-26 21:21:45 +00:00

13 lines
217 B
PHP
Executable File

<?php
/** \ingroup SPL
* \brief Interface to access inner iterator of iterator wrappers
*/
interface OuterIterator extends Iterator
{
/** \return inner iterator
*/
abstract function getInnerIterator();
}
?>