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

Returns an iterator which will return unique values present in the first and second iterator.
public intersectionIterator ( Traversable $iterator, Traversable $otherIterator ) : Pinq\Iterators\IWrapperIterator
$iterator Traversable
$otherIterator Traversable
Результат Pinq\Iterators\IWrapperIterator
Пример #1
0
 public function intersect($values)
 {
     return $this->constructScopedSelf($this->scheme->intersectionIterator($this->elements, $this->scheme->toIterator($values)));
 }