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
this error is a direct consequence of changing Array to AbstractArray in #463. supporting the myriad types of AbstactArrays might be more trouble than it's worth. we could consider reverting back.
Good catch... Yeah seems like we should be safe and revert the generic dispatch to AbstractArray. Perhaps we could add an alias to supported Array types that are defined in base (e.g. Union{Array,SharedArray,...})
collect(A::AbstractArray) yields an Array in all cases i've tested so far. so we could just define a method which does that conversion and then proceed as normal. will work on a PR.
here's what should be added to the tests:
The text was updated successfully, but these errors were encountered: