appendIterator() 공개 메소드

Returns an iterator which will return all values from both the supplied iterators.
public appendIterator ( Traversable $iterator, Traversable $otherIterator ) : Pinq\Iterators\IWrapperIterator
$iterator Traversable
$otherIterator Traversable
리턴 Pinq\Iterators\IWrapperIterator
예제 #1
0
 public function append($values)
 {
     return $this->constructScopedSelf($this->scheme->appendIterator($this->elements, $this->scheme->toIterator($values)));
 }