PHP - Funzione Ds Set union ()
La funzione Ds \ Set :: union () può creare un nuovo set utilizzando i valori dell'istanza corrente e un altro set.
Sintassi
public Ds\Set Ds\Set::union( Ds\Set $set )
La funzione Ds \ Set :: union () può creare un nuovo set che contiene i valori dell'istanza corrente e i valori di un altro set.
La funzione Ds \ Set :: union () può restituire un nuovo set contenente tutti i valori dell'istanza corrente così come un altro set.
Esempio 1
<?php
$set1 = new \Ds\Set([2, 3, 5]);
$set2 = new \Ds\Set([2, 4, 6, 7]);
echo("The union of both set: \n");
print_r($set1-<union($set2));
?>
Esempio 2
<?php
$set1 = new \Ds\Set([2, 3, 6, 7, 8]);
$set2 = new \Ds\Set([2, 3, 5, 8, 9, 10]);
echo("The union of both set: \n");
var_dump($set1->union($set2));
?>