map Values
inline fun <K, V, R> Map<out K, V>.mapValues(transform: (Map.Entry<K, V>) -> R): Map<K, R>
Content copied to clipboard
Returns a new map with entries having the keys of this map and the values obtained by applying the transform function to each entry in this Map.
The returned map preserves the entry iteration order of the original map.
Samples
import samples.*
import kotlin.test.*
import java.util.*
fun main() {
//sampleStart
val map1 = mapOf("beverage" to 2.7, "meal" to 12.4)
val map2 = map1.mapValues { it.value.toString() + "$" }
assertPrints(map2, "{beverage=2.7$, meal=12.4$}")
//sampleEnd
}