https://kotlinlang.org logo
Title
z

zero_coding

03/24/2020, 1:29 PM
Does it exists immutable list in Kotlin?
d

deactivateduser

03/24/2020, 1:49 PM
It does
m

marstran

03/24/2020, 1:52 PM
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

zero_coding

03/24/2020, 1:55 PM
Aha...ok. So I have to install additional library.
In Scala for example we have:
is it production ready?
?