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 was 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.