Generic Instance Method 総称体インスタンスメソッド

mapValues(_:)

Returns a new dictionary containing the keys of this dictionary with the values transformed by the given closure. 与えられたクロージャによって変形された値とともに、この辞書のキーを含んでいる新しい辞書を返します。

Declaration 宣言

func mapValues<T>(_ transform: (Value) throws -> T) rethrows -> Dictionary<Key, T>

Parameters パラメータ

transform

A closure that transforms a value. transform accepts each value of the dictionary as its parameter and returns a transformed value of the same or of a different type. 値を変換するクロージャ。transformは、辞書の各値をそれのパラメータとして受け取って、同じまたは異なる型の変換した値を返します。

Return Value 戻り値

A dictionary containing the keys and transformed values of this dictionary. この辞書のキーと変換された値を含んでいる辞書。

Discussion 解説

Complexity: O(n), where n is the length of the dictionary. 計算量:O(n)、ここでnは辞書の長さです。

See Also 参照

Transforming a Dictionary 辞書の変形