PHP - Ds Imposta la funzione xor ()

La funzione Ds \ Set :: xor () può creare un nuovo set utilizzando i valori nell'istanza corrente e un altro set ma non in entrambi.

Sintassi

public Ds\Set Ds\Set::xor( Ds\Set $set )

La funzione Ds \ Set :: xor () può restituire un nuovo insieme contenente valori nell'istanza corrente così come un altro insieme ma non in entrambi.

Esempio

<?php  
   $set1 = new \Ds\Set([2, 3, 6, 7, 8]);  
   $set2 = new \Ds\Set([2, 3, 5, 8, 10]);  
  
   echo("The xor of both set: \n");  
   var_dump($set1->xor($set2)); 
?>