|
Ds\Map::mergeReturns the result of adding all given associations. Beschreibung
public Ds\Map Ds\Map::merge
( mixed
$values
)Returns the result of associating all keys of a given traversable object or array with their corresponding values, combined with the current instance.
Parameter-Liste
RückgabewerteThe result of associating all keys of a given traversable object or array with their corresponding values, combined with the current instance.
BeispieleBeispiel #1 Ds\Map::merge example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Ds\Map Object
(
[0] => Ds\Pair Object
(
[key] => a
[value] => 10
)
[1] => Ds\Pair Object
(
[key] => b
[value] => 2
)
[2] => Ds\Pair Object
(
[key] => c
[value] => 3
)
[3] => Ds\Pair Object
(
[key] => e
[value] => 50
)
)
|