PHP - Función Ds Set reversed ()

La función Ds \ Set :: reversed () puede devolver una copia invertida.

Sintaxis

public Ds\Set Ds\Set::reversed( void )

La función Ds \ Set :: reversed () no tiene ningún parámetro.

La función Ds \ Set :: reversed () puede devolver una copia invertida de un conjunto.

Ejemplo 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());  
?>

Ejemplo 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());  
?>