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

public __construct ( Pinq\Iterators\Generators\IGenerator $outerIterator, Pinq\Iterators\Generators\IGenerator $innerIterator, callable $traversableFactory )
$outerIterator Pinq\Iterators\Generators\IGenerator
$innerIterator Pinq\Iterators\Generators\IGenerator
$traversableFactory callable
 public function __construct(IGenerator $outerIterator, IGenerator $innerIterator, callable $traversableFactory, callable $outerKeyFunction, callable $innerKeyFunction)
 {
     parent::__construct($outerIterator, $innerIterator, $traversableFactory);
     self::__constructJoinOnEqualityIterator($outerKeyFunction, $innerKeyFunction);
 }
Пример #2
0
 public function __construct(IGenerator $outerIterator, IGenerator $innerIterator, callable $traversableFactory, callable $filter)
 {
     parent::__construct($outerIterator, $innerIterator, $traversableFactory);
     self::__constructJoinOnIterator($filter);
 }