对于lambda表达式,可以使用_字符代替不使用的参数。
map.forEach { _, value -> println("$value!") }
在解构语法中同样适用。
val (_, status) = getResult()