Pinq\Iterators\Standard\GroupJoinOnEqualityIterator::__construct PHP Метод

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

public __construct ( Pinq\Iterators\Standard\IIterator $outerIterator, Pinq\Iterators\Standard\IIterator $innerIterator, callable $traversableFactory, callable $outerKeyFunction, callable $innerKeyFunction )
$outerIterator Pinq\Iterators\Standard\IIterator
$innerIterator Pinq\Iterators\Standard\IIterator
$traversableFactory callable
$outerKeyFunction callable
$innerKeyFunction callable
    public function __construct(IIterator $outerIterator, IIterator $innerIterator, callable $traversableFactory, callable $outerKeyFunction, callable $innerKeyFunction)
    {
        parent::__construct($outerIterator, $innerIterator, $traversableFactory);
        self::__constructJoinOnEqualityIterator($outerKeyFunction, $innerKeyFunction);
    }