Pinq\ICollection::addRange PHP Method

addRange() public method

The collection will be reindexed.
public addRange ( array | Traversable $values ) : void
$values array | Traversable The values to add
return void
    public function addRange($values);

Usage Example

Esempio n. 1
0
 public function visitAddValues(Operations\AddValues $operation)
 {
     $this->collection->addRange(Traversable\ScopeEvaluator::evaluateSource($operation->getSource(), $this->parameters));
 }
All Usage Examples Of Pinq\ICollection::addRange