(PECL ds >= 1.0.0)
Ds\Set::xor — Creates a new set using values in either the current instance or in another set, but not in both
Creates a new set containing values in the current instance as well as another set
,
but not in both.
A ⊖ B = {x : x ∈ (A \ B) ∪ (B \ A)}
set
The other set.
A new set containing values in the current instance as well as another set
,
but not in both.
Example #1 Ds\Set::xor() example
<?php
$a = new \Ds\Set([1, 2, 3]);
$b = new \Ds\Set([3, 4, 5]);
var_dump($a->xor($b));
?>
The above example will output something similar to:
object(Ds\Set)#3 (4) { [0]=> int(1) [1]=> int(2) [2]=> int(4) [3]=> int(5) }
Follow Lee on X/Twitter - Father, Husband, Serial builder creating AI, crypto, games & web tools. We are friends :) AI Will Come To Life!
Check out: eBank.nz (Art Generator) |
Netwrck.com (AI Tools) |
Text-Generator.io (AI API) |
BitBank.nz (Crypto AI) |
ReadingTime (Kids Reading) |
RewordGame |
BigMultiplayerChess |
WebFiddle |
How.nz |
Helix AI Assistant