kotlin mapValuesメソッドでmutableMapの値を利用するサンプル
環境
Ubuntu 22.04.1 LTS
openjdk 11.0.16 2022-07-19
Kotlin version 1.7.20-release-201
構文
map名.mapValues{ it.value }
mapValuesメソッドを使って、mutableMmutableMapの値(value)を操作します。
使用例
fun main() { val cft = mutableMapOf('s' to 21, 't' to 32, 'u' to 43, 'd' to 54) println( cft.mapValues{it.value * 3} ) println( cft.mapValues{it.value + 10} ) }
実行結果
{s=63, t=96, u=129, d=162}
{s=31, t=42, u=53, d=64}