-
Is it possible to remove elements in an array in Pallene right now? I've been working around it for the moment, where I just create a new array, copy over all the elements I want to keep, and let the old array be collected. But I'm reaching a point in my experiment program where potentially multiple things are keeping a reference to the same array, so trying to swap it out like that doesn't work so well. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
I believe the the only way to do that right now may be to cast the array to type |
Beta Was this translation helpful? Give feedback.
I believe the the only way to do that right now may be to cast the array to type
{any}
.