Is it expected that `freeze()` does not freeze ite...
# kotlin-native
s
Is it expected that
freeze()
does not freeze items inside a collection?
n
is the collection created in Swift/Obj-C?
k
Freeze should freeze everything, including items in a collection (unless as @Nikolay Kasyanov asked, if the collection is not a kotlin collection)
s
ohh that makes sense, yep I was creating my collection from swift. didn’t realize I’ll have to call freeze from swift too.
n
yeah that’s a bummer indeed
s
thank you both!