|
Ds\Sequence::sortedReturns a sorted copy. Beschreibung
abstract public Ds\Sequence Ds\Sequence::sorted
([ callable
$comparator
] )
Returns a sorted copy, using an optional Parameter-Liste
RückgabewerteReturns a sorted copy of the sequence. BeispieleBeispiel #1 Ds\Sequence::sorted example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Ds\Vector Object
(
[0] => 1
[1] => 2
[2] => 3
[3] => 4
[4] => 5
)
Beispiel #2 Ds\Sequence::sorted example using a comparator
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Ds\Vector Object
(
[0] => 5
[1] => 4
[2] => 3
[3] => 2
[4] => 1
)
|