|
Ds\Sequence::sortSorts the sequence in-place. Description
abstract public void Ds\Sequence::sort
([ callable
$comparator
] )
Sorts the sequence in-place, using an optional Parameters
Return ValuesNo value is returned. ExamplesExample #1 Ds\Sequence::sort example
<?phpThe above example will output something similar to:
Ds\Vector Object
(
[0] => 1
[1] => 2
[2] => 3
[3] => 4
[4] => 5
)
Example #2 Ds\Sequence::sort example using a comparator
<?phpThe above example will output something similar to:
Ds\Vector Object
(
[0] => 5
[1] => 4
[2] => 3
[3] => 2
[4] => 1
)
|