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
{{ message }}
This repository has been archived by the owner on May 4, 2019. It is now read-only.
We currently make a copy of an Array{Union{T, Null}} input to an Array{T} because the data field of DataArray should be Array{T}. We should use low-level Julia API once available to access the underlying value part of the input as an Array{T} (for isbits types) in an unsafe way, since we know we will never access null entries. See this discussion.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We currently make a copy of an
Array{Union{T, Null}}
input to anArray{T}
because thedata
field ofDataArray
should beArray{T}
. We should use low-level Julia API once available to access the underlying value part of the input as anArray{T}
(forisbits
types) in an unsafe way, since we know we will never accessnull
entries. See this discussion.The text was updated successfully, but these errors were encountered: