|
Ds\Set::xorCreates a new set using values in either the current instance or in another set, but not in both. Beschreibung
public Ds\Set Ds\Set::xor
( Ds\Set
$set
)
Creates a new set containing values in the current instance as well as another
Parameter-Liste
Rückgabewerte
A new set containing values in the current instance as well as another BeispieleBeispiel #1 Ds\Set::xor example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
object(Ds\Set)#3 (4) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(4)
[3]=>
int(5)
}
|