Does it exists immutable list in Kotlin?
# getting-started
z
Does it exists immutable list in Kotlin?
d
It does
m
The
List
in Kotlin's standard library is not immutable, but read-only. There's this library though: https://github.com/Kotlin/kotlinx.collections.immutable
z
Aha...ok. So I have to install additional library.
In Scala for example we have:
is it production ready?
?