You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that calling slice on an array or tuple causes new memory to be allocated for the returned tuple. This may cause some performance penalty when working with big data sets.
Since the returned tuple is read-only, is it possible to reuse the existing memory for it instead of making a copy, or this would require some big changes in the Janet VM?