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
using UnsafeArrays
A =rand(4, 6)
@uviews A begin
va =vec(A)
va isa UnsafeArray{Float64,1}
end
So I don't think we need a special uvec function. Also, in general, uview should rarely be used directly - use the @uviews macro instead, it protectd the original arrays from GC.
Is there any interest in a
uvec
method? I imagine it would be something likeThe text was updated successfully, but these errors were encountered: