Instance Method インスタンスメソッド

keysSortedByValue(comparator:)

Returns an array of the dictionary’s keys, in the order they would be in if the dictionary were sorted by its values using a given comparator block. 辞書の持つキーそれらの配列を返します、ある与えられた比較子ブロックを使ってもし辞書がそれの値それらでソートされたならば、その状態の順番で。

Declaration 宣言

func keysSortedByValue(comparator cmptr: (Any, Any) -> ComparisonResult) -> [Any]

Parameters パラメータ

cmptr

A comparator block. 比較を行うブロック。

Return Value 戻り値

An array of the dictionary’s keys, in the order they would be in if the dictionary were sorted by its values using cmptr. 辞書の持つキーの配列、辞書がそれの値でcmptrを使ってソートされたならば、それらがなるであろう順番で。

See Also 参照

Sorting Dictionaries 辞書をソートする