1 | <?php |
||
15 | final class MapIterator extends \IteratorIterator |
||
16 | { |
||
17 | protected $callback; |
||
18 | protected $callbackResult; |
||
19 | protected $callbackResultCached; |
||
20 | |||
21 | 3 | public function __construct(\Iterator $iterator, callable $callback) |
|
26 | |||
27 | 2 | public function current() |
|
36 | |||
37 | 1 | public function next() |
|
43 | } |
||
44 |