mapValues
trait Map[K, V] { def mapValues[W](f: (V) => W): Map[K, W] }
mapValues は、この Map のキーはそのままで各キーの値を関数 f で変換した Map を作成します。
Map
f