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

keysSortedByValue(options:usingComparator:)

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 and a specified set of options. 辞書の持つキーそれらの配列を返します、ある与えられた比較子ブロックと指定された一揃いのオプションを使ってもし辞書がそれの値それらでソートされたならば、その状態の順番で。

Declaration 宣言

func keysSortedByValue(options opts: NSSortOptions = [], 
       usingComparator cmptr: (Any, Any) -> ComparisonResult) -> [Any]

Parameters パラメータ

opts

A bitmask of sort options. ソートオプションのビットマスク。

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 with the options given in opts. 辞書の持つキーの配列、辞書がそれの値でcmptrを使って、optsにおいて指定されるオプションでソートされたならば、それらがなるであろう順番で。

See Also 参照

Sorting Dictionaries 辞書をソートする