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