What's the difference between `lazy` and `atomicLa...
# kotlin-native
b
What's the difference between
lazy
and
atomicLazy
? Is
lazy
not thread-safe on native?
k
docs say atomicLazy works with frozen objects
i assume it's using an atomic reference
b
lazy works with frozen objects too…
k
you can see the differences in native/concurrent/Lazy.kt
👍 1