1 | <?php |
||
7 | class LazySliceKeyedIterable implements KeyedIterable |
||
8 | { |
||
9 | use LazyKeyedIterableTrait; |
||
10 | |||
11 | /** |
||
12 | * @var KeyedIterable |
||
13 | */ |
||
14 | private $Enumerable; |
||
15 | |||
16 | /** |
||
17 | * @var int |
||
18 | */ |
||
19 | private $start; |
||
20 | |||
21 | /** |
||
22 | * @var int |
||
23 | */ |
||
24 | private $len; |
||
25 | |||
26 | public function __construct($Enumerable, $start, $len) |
||
32 | |||
33 | public function getIterator() |
||
37 | } |
||
38 |