Is there an instanciable MutableList in Kotlin, avoiding java api?
kotlin
Solution
Try to use `mutableListOf` or `arrayListOf`.
Problem
`MutableList` is an interface, but I cannot find a class in `kotlin` package that implements it explicitly. Is there any? Furthermore, I would have expected to be a package-scope defined mutableListOf(varargs) symetrically to listOf(varargs). Up until now, I have to use java Collections.