fun valuesNotNull(map: MutableMap) { map.putIfAbsent(1, "") } fun valuesNullable(map: MutableMap) { map.putIfAbsent(1, null) }