A função Ds \ Map :: reverse () pode reverter o mapa no local.
Sintaxe
public void Ds\Map::reverse( void )
A função Ds \ Map :: reverse () não tem parâmetros.
A função Ds \ Map :: reverse () não retorna nenhum valor.
Exemplo 1
<?php
$map = new \Ds\Map([1 => 10, 2 => 20, 3 => 30]);
$map->reverse();
print_r($map);
?>
Exemplo-2
<?php
$map = new \Ds\Map(["first" => "Tutorials", "second" => "Point", "third" => "India"]);
$map->reverse();
print_r($map);
?>