La función Ds \ Map :: putAll () puede asociar todos los pares clave-valor de objeto o matriz atravesable.
Sintaxis
public void Ds\Map::putAll( mixed $pairs )
La función Ds \ Map :: putAll () no devuelve ningún valor.
Ejemplo
<?php
$map = new \Ds\Map();
$map->putAll(["x" => "Tutorials", "y" => "Point", "z" => "India"]);
print_r($map);
$map = new \Ds\Map();
$map->putAll(["y" => "Tutorix", "v" => "Hyderabad", "w" => "India"]);
print_r($map);
?>