Pinq\Iterators\Generators\LazyGenerator::__construct PHP Méthode

__construct() public méthode

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

Usage Example

Exemple #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