How to modify inner list?

var listOfLists : List<List<Int>> = mutableListOf()

If I want to add some elements to the inner list, what should I do? The inner list seems to be immutable be default.

Same thing happens with Map. In Java, I can do this:
Map<String, List<String>> map = ......
map.computeIfAbsent(key, key -> new ArrayList<>()).add("a string").

How can I achieve the same with Kotlin?

In Kotlin if you just do List it’s immutable. If you want to modify the content you must write the Mutable prefix. So, for List it’ll be MutableList and for Map it’ll be MutableMap

I understand that. It’s the inner list. I don’t know how to make it mutable.

Just write List<MutableList<Int>> if you want only the inner list to be mutable. Otherwise, do MutableList<MutableList<Int>>

1 Like

You are right!! Thanks a lot.