~How can I unfreeze a companion object? I tried us...
# kotlin-native
c
How can I unfreeze a companion object? I tried usin g
@konan.ThreadLocal
but I have no idea what's its package — it gives me
Unresolved reference
I managed to find a way, but another question persists — where to store global data so the singletons may stay immutable?
k
1. don't use mutable global data
c
I need to store a global mutable list somewhere, though
k
if you really need that, then I recommend checking out stately
c
What do you mean?
k