A função Ds \ Set :: reversed () pode retornar uma cópia revertida.
Sintaxe
public Ds\Set Ds\Set::reversed( void )
A função Ds \ Set :: reversed () não possui parâmetros.
A função Ds \ Set :: reversed () pode retornar uma cópia reversa de um conjunto.
Exemplo 1
<?php
$set = new \Ds\Set([1, 2, 3, 4, 5]);
echo "\n The actual set is: \n";
print_r($set);
echo("The reversed set is: \n");
print_r($set->reversed());
?>
Exemplo-2
<?php
$set = new \Ds\Set(["Tutorials", "Point", "India"]);
echo "\n The actual set is: \n";
print_r($set);
echo("The reversed set is: \n");
print_r($set->reversed());
?>