array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'ds-set.merge.php', 1 => 'Ds\\Set::merge', 2 => 'Returns the result of adding all given values to the set', ), 'up' => array ( 0 => 'class.ds-set.php', 1 => 'Ds\\Set', ), 'prev' => array ( 0 => 'ds-set.map.php', 1 => 'Ds\\Set::map', ), 'next' => array ( 0 => 'ds-set.reduce.php', 1 => 'Ds\\Set::reduce', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ds/ds/set/merge.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

Ds\Set::merge

(PECL ds >= 1.0.3)

Ds\Set::mergeReturns the result of adding all given values to the set

Beschreibung

public Ds\Set::merge(mixed $values): Ds\Set

Returns the result of adding all given values to the set.

Parameter-Liste

values

A traversable object or an Array.

Rückgabewerte

The result of adding all given values to the set, effectively the same as adding the values to a copy, then returning that copy.

Hinweis:

The current instance won't be affected.

Beispiele

Beispiel #1 Ds\Set::merge() example

<?php
$set
= new \Ds\Set([1, 2, 3]);

var_dump($set->merge([3, 4, 5]));
var_dump($set);
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

object(Ds\Set)#2 (6) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
  [3]=>
  int(4)
  [4]=>
  int(5)
}
object(Ds\Set)#1 (3) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
}