(PECL ds >= 1.0.0)
Ds\Sequence::sort — Sorts the sequence in-place
Sorts the sequence in-place, using an optional comparator
function.
comparator
比較関数は、最初の引数と二番目の引数の比較結果を返します。最初の引数のほうが二番目の引数より大きい場合は正の数を、二番目の引数と等しい場合はゼロを、そして二番目の引数より小さい場合は負の数を返す必要があります。
Returning non-integer values from the comparison function, such as float, will result in an internal cast to int of the callback's return value. So values such as 0.99 and 0.1 will both be cast to an integer value of 0, which will compare such values as equal.
値を返しません。
例1 Ds\Sequence::sort() example
<?php
$sequence = new \Ds\Vector([4, 5, 1, 3, 2]);
$sequence->sort();
print_r($sequence);
?>
上の例の出力は、 たとえば以下のようになります。
Ds\Vector Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 )
例2 Ds\Sequence::sort() example using a comparator
<?php
$sequence = new \Ds\Vector([4, 5, 1, 3, 2]);
$sequence->sort(function($a, $b) {
return $b <=> $a;
});
print_r($sequence);
?>
上の例の出力は、 たとえば以下のようになります。
Ds\Vector Object ( [0] => 5 [1] => 4 [2] => 3 [3] => 2 [4] => 1 )