-
-
Couldn't load subscription status.
- Fork 72
Open
Labels
Description
Copying from a view to a view requires Base._parentsmatch(::TypeOfView1, ::TypeOfView2) I think for optimization reasons. RecursiveArrayTools currently doesn't define this.
Two solutions:
- RecursiveArrayTools defines
Base._parentsmatch(::AbstractArray, ::AbstractVectorOfArray) = false
- Base defines
Base._parentsmatch(::Any, ::Any) = false
It's weird that base doesn't define a default for this. They didn't think someone would extend views?