Pinq\Iterators\Generators\LazyGenerator::__construct PHP Метод

__construct() публичный Метод

public __construct ( Pinq\Iterators\Generators\IGenerator $iterator )
$iterator Pinq\Iterators\Generators\IGenerator
    public function __construct(IGenerator $iterator)
    {
        parent::__construct($iterator);
    }

Usage Example

Пример #1
0
 public function __construct(IGenerator $iterator, callable $groupByFunction, callable $traversableFactory)
 {
     parent::__construct($iterator);
     self::__constructIterator($groupByFunction, $traversableFactory);
 }
All Usage Examples Of Pinq\Iterators\Generators\LazyGenerator::__construct