Are Kotlin objects always allocated on heap?
# kotlin-native
d
Are Kotlin objects always allocated on heap?
o
Yes, and once escape analysis matures, some will be frame local arena or even frame itself
👍 1
n
What are the differences between local arena and the other Arena types?
o
its lifetime is bound to the frame lifetime
n
What is meant by frame? Is it related to a stack frame?
o
yes, stack frame created on function invocation