NB: there are no immutable collections in Kotlin s...
# getting-started
d
NB: there are no immutable collections in Kotlin stdlib at the moment (but they are coming soon). Interfaces such as
Collection<T>
,
List<T>
and so on represent read-only collections. That is, a view of some collection you can't modify (but someone else can).