Maybe this: ```map.compute(key, { k, v -> v?.le...
# getting-started
t
Maybe this:
Copy code
map.compute(key, { k, v -> v?.let { f(it) } ?: init })
?