A função Ds \ Set :: union () pode criar um novo conjunto usando valores da instância atual e outro conjunto.
Sintaxe
public Ds\Set Ds\Set::union( Ds\Set $set )
A função Ds \ Set :: union () pode criar um novo conjunto que contém valores da instância atual e valores de outro conjunto.
A função Ds \ Set :: union () pode retornar um novo conjunto contendo todos os valores da instância atual, bem como outro conjunto.
Exemplo 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));
?>
Exemplo 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));
?>