(PECL ds >= 1.0.0)
Ds\Set::reversed — Returns a reversed copy
Returns a reversed copy of the set.
Cette fonction ne contient aucun paramètre.
A reversed copy of the set.
Note:
The current instance is not affected.
Exemple #1 Ds\Set::reversed() example
<?php
$set = new \Ds\Set(["a", "b", "c"]);
print_r($set->reversed());
print_r($set);
?>
L'exemple ci-dessus va afficher quelque chose de similaire à :
Ds\Set Object ( [0] => c [1] => b [2] => a ) Ds\Set Object ( [0] => a [1] => b [2] => c )