|
Ds\Deque::sortedReturns a sorted copy 説明
public Ds\Deque Ds\Deque::sorted(callable
$comparator = ?)
Returns a sorted copy, using an optional パラメータ
戻り値Returns a sorted copy of the deque. 例例1 Ds\Deque::sorted example
上の例の出力は、 たとえば以下のようになります。 Ds\Deque Object ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 ) 例2 Ds\Deque::sorted example using a comparator
上の例の出力は、 たとえば以下のようになります。 Ds\Deque Object ( [0] => 5 [1] => 4 [2] => 3 [3] => 2 [4] => 1 ) |