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
As discussed in this thread , it'd be useful to allow converting between Array{Union{T, Missing}, N} and Array{T, N} without copying the data whenever possible. From (my understanding of) the discourse discussion, it seems that conversion fromArray{Union{T, Missing}, N} to Array{T, N} should always be possible without copying whereas the other direction depends on whether the already allocated region is big enough to fit the wider type.
The text was updated successfully, but these errors were encountered:
bump - @vtjnash do you know who knows enough about Julia internals to implement this? (as the request popped up again recently) Or could you please point me to the documentation/section of the internals that are related to the required changes? Thank you!
As discussed in this thread , it'd be useful to allow converting between
Array{Union{T, Missing}, N}
andArray{T, N}
without copying the data whenever possible. From (my understanding of) the discourse discussion, it seems that conversion fromArray{Union{T, Missing}, N}
toArray{T, N}
should always be possible without copying whereas the other direction depends on whether the already allocated region is big enough to fit the wider type.The text was updated successfully, but these errors were encountered: