|
Ds\Map::xorCreates a new map using keys of either the current instance or of another map, but not of both. Beschreibung
public Ds\Map Ds\Map::xor
( Ds\Map
$map
)
Creates a new map containing keys of the current instance as well as another
Parameter-Liste
Rückgabewerte
A new map containing keys in the current instance as well as another BeispieleBeispiel #1 Ds\Map::xor example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Ds\Map Object
(
[0] => Ds\Pair Object
(
[key] => a
[value] => 1
)
[1] => Ds\Pair Object
(
[key] => d
[value] => 6
)
)
|