|
Ds\Vector::sortSorts the vector in-place 説明
public void Ds\Vector::sort(callable
$comparator = ?)
Sorts the vector in-place, using an optional パラメータ
戻り値値を返しません。 例例1 Ds\Vector::sort example 上の例の出力は、 たとえば以下のようになります。
Ds\Vector Object
(
[0] => 1
[1] => 2
[2] => 3
[3] => 4
[4] => 5
)
例2 Ds\Vector::sort example using a comparator 上の例の出力は、 たとえば以下のようになります。
Ds\Vector Object
(
[0] => 5
[1] => 4
[2] => 3
[3] => 2
[4] => 1
)
|