Alexandru Gheorghe
04/26/2024, 1:22 PMMap<String, Map<String, Map<String, Int>>>ifIntNo set method providing array accessval keyMap = cls.parameter!!["key"] as Map<*, *>
// logic here to increment the value of the last key in the nested map
keyMap[nestedKey1][key] = new_valuecls.parameterRuckus
04/26/2024, 2:53 PMMap<String, Map<String, MutableMap<String, Int>>>Alexandru Gheorghe
04/26/2024, 3:05 PMMap<map[key1][key2][key3] = valuemap[key1][key2][key3] += valueRuckus
04/26/2024, 3:20 PMmap[key]nullmap.getValue(key1).getValue(key2).let { it[key] = it.getOrDefault(key3, 0) + 1 }Alexandru Gheorghe
04/26/2024, 3:23 PMmap!![key1]?.get(key2)MutableMapRuckus
04/26/2024, 3:26 PMAlexandru Gheorghe
04/26/2024, 3:31 PMgetValue(key2)Ruckus
04/26/2024, 3:32 PMAlexandru Gheorghe
04/26/2024, 3:34 PMRuckus
04/26/2024, 3:40 PMRuckus
04/26/2024, 3:43 PMmap.getOrPut(key1) { mutableMapOf() }
    .getOrPut(key2) { mutableMapOf() }
    .let { it[key3] = it.getOrDefault(key3, 0) + 1 }Ruckus
04/26/2024, 3:46 PMwithDefaultAlexandru Gheorghe
04/26/2024, 3:47 PMKonstantin
04/26/2024, 8:28 PM