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
So the second Data is a zero copy slice on the input. This means that if you checked if it's shared, it would say it's not shared because the view occupies the whole buffer? Need to double check this.
In any case, implementing hard cloning with slicing shouldn't be too hard, copying from the arrowjs method that has subarrays
The text was updated successfully, but these errors were encountered:
I.e. in this example if you look at
you'll see
So the second
Data
is a zero copy slice on the input. This means that if you checked if it's shared, it would say it's not shared because the view occupies the whole buffer? Need to double check this.In any case, implementing hard cloning with slicing shouldn't be too hard, copying from the arrowjs method that has subarrays
The text was updated successfully, but these errors were encountered: