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 that under the hood vec is a contiguous array of Int. It seems like this could be done be storing not just the indices in the type, but the underlying shape as well. vec.y in the above example would return a ReshapedArray of the underlying view.
Thoughts?
The text was updated successfully, but these errors were encountered:
I'm looking for a way to store tuples of same-typed but differently-sized data as in:
So that under the hood
vec
is a contiguous array ofInt
. It seems like this could be done be storing not just the indices in the type, but the underlying shape as well.vec.y
in the above example would return aReshapedArray
of the underlyingview
.Thoughts?
The text was updated successfully, but these errors were encountered: