Open
Description
It would be handy to add something like the following overloads:
getindex(x::AbstractZero, i..) = x
view(x::AbstractZero, i...) = x
since a Zero
if interpreted as an array can only have Zero
subarrays or elements. This would make it so rules that depend only on certain elements of a differential don't necessarily have to special-case to work around possible Zero
arrays but can instead just index them as normal.