3
¿Cómo inicializo la MutableList de Kotlin para vaciar la MutableList?
Parece tan simple, pero, ¿cómo inicializo Kotlin's MutableListpara vaciarlo MutableList? Podría hackearlo de esta manera, pero estoy seguro de que hay algo más fácil disponible: var pusta: List<Kolory> = emptyList() var cos: MutableList<Kolory> = pusta.toArrayList()
241
kotlin