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