diff --git a/lib/ArrayInterfaceOffsetArrays/Project.toml b/lib/ArrayInterfaceOffsetArrays/Project.toml index a8789b543..e54cb7fb6 100644 --- a/lib/ArrayInterfaceOffsetArrays/Project.toml +++ b/lib/ArrayInterfaceOffsetArrays/Project.toml @@ -1,6 +1,6 @@ name = "ArrayInterfaceOffsetArrays" uuid = "015c0d05-e682-4f19-8f0a-679ce4c54826" -version = "0.1.4" +version = "0.1.5" [deps] ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9" diff --git a/lib/ArrayInterfaceOffsetArrays/src/ArrayInterfaceOffsetArrays.jl b/lib/ArrayInterfaceOffsetArrays/src/ArrayInterfaceOffsetArrays.jl index af6332728..61fe637f0 100644 --- a/lib/ArrayInterfaceOffsetArrays/src/ArrayInterfaceOffsetArrays.jl +++ b/lib/ArrayInterfaceOffsetArrays/src/ArrayInterfaceOffsetArrays.jl @@ -48,6 +48,9 @@ end function ArrayInterface.stride_rank(T::Type{<:OffsetArray}) ArrayInterface.stride_rank(ArrayInterface.parent_type(T)) end +function ArrayInterface.dense_dims(T::Type{<:OffsetArray}) + ArrayInterface.dense_dims(ArrayInterface.parent_type(T)) +end function ArrayInterface.contiguous_axis(T::Type{<:OffsetArray}) ArrayInterface.contiguous_axis(ArrayInterface.parent_type(T)) end