PHP - Funzione Ds Set sort ()
La funzione Ds \ Set :: sort () può ordinare un set sul posto.
Sintassi
public void Ds\Set::sort([ callable $comparator ] )
La funzione Ds \ Set :: sort () può ordinare un set sul posto utilizzando una funzione di confronto opzionale.
La funzione Ds \ Set :: sort () non restituisce alcun valore.
Esempio 1
<?php
$set = new \Ds\Set([20, 10, 30, 50, 40]);
$set->sort();
print_r($set);
?>
Esempio 2
<?php
$set = new \Ds\Set([4, 5, 1, 3, 2]);
$set->sort(function($x, $y) {
return $y <=> $x;
});
print_r($set);
?>