__construct() public method

public __construct ( Pinq\Iterators\Generators\IGenerator $outerIterator, Pinq\Iterators\Generators\IGenerator $innerIterator )
$outerIterator Pinq\Iterators\Generators\IGenerator
$innerIterator Pinq\Iterators\Generators\IGenerator
示例#1
0
 public function __construct(IGenerator $outerIterator, IGenerator $innerIterator, callable $filter)
 {
     parent::__construct($outerIterator, $innerIterator);
     self::__constructJoinOnIterator($filter);
 }
示例#2
0
 public function __construct(IGenerator $outerIterator, IGenerator $innerIterator, callable $traversableFactory)
 {
     parent::__construct($outerIterator, $innerIterator);
     self::__constructGroupJoinIterator($traversableFactory);
 }
示例#3
0
 public function __construct(IGenerator $outerIterator, IGenerator $innerIterator, callable $outerKeyFunction, callable $innerKeyFunction)
 {
     parent::__construct($outerIterator, $innerIterator);
     self::__constructJoinOnEqualityIterator($outerKeyFunction, $innerKeyFunction);
 }