PHP - Función Ds Set sort ()

La función Ds \ Set :: sort () puede ordenar un conjunto in situ.

Sintaxis

public void Ds\Set::sort([ callable $comparator ] )

La función Ds \ Set :: sort () puede ordenar un conjunto in situ utilizando una función de comparación opcional.

La función Ds \ Set :: sort () no devuelve ningún valor.

Ejemplo 1

<?php 
   $set = new \Ds\Set([20, 10, 30, 50, 40]); 
   $set->sort(); 
   
   print_r($set); 
?>

Ejemplo 2

<?php
   $set = new \Ds\Set([4, 5, 1, 3, 2]);
   $set->sort(function($x, $y) {
      return $y <=> $x;
   });
   print_r($set);
?>