<@U5SP8TVFA> the java way, probably ``` private va...
# announcements
s
@dekans the java way, probably
Copy code
private val _list: MutableList<T>
val list: List<T> = _list
a
keep in mind this is bad for interop with Java though (Java code will be able to add/remove elements from list returned by
getList()
)
1