How to copy list in Kotlin?
I'm using
val selectedSeries = mutableListOf<String>() selectedSeries.addAll(series)
Is there a easier way?
This works fine.
val selectedSeries = series.toMutableList()
1.4m articles
1.4m replys
5 comments
57.0k users