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

__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)
    {
        parent::__construct($outerIterator, $innerIterator);
        self::__constructGroupJoinIterator($traversableFactory);
    }

Usage Example

 public function __construct(IGenerator $outerIterator, IGenerator $innerIterator, callable $traversableFactory, callable $outerKeyFunction, callable $innerKeyFunction)
 {
     parent::__construct($outerIterator, $innerIterator, $traversableFactory);
     self::__constructJoinOnEqualityIterator($outerKeyFunction, $innerKeyFunction);
 }
All Usage Examples Of Pinq\Iterators\Generators\GroupJoinIterator::__construct
GroupJoinIterator