Skip to content

Commit 1cc9109

Browse files
committed
Change super-type of VectorOfArrays
1 parent 52afb83 commit 1cc9109

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vector_of_arrays.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
doc"""
5-
VectorOfArrays{T,N,M} <: AbstractVector{AbstractArray{T,N}}
5+
VectorOfArrays{T,N,M} <: AbstractVector{<:AbstractArray{T,N}}
66
77
An `VectorOfArrays` represents a vector of `N`-dimensional arrays (that may
88
differ in size). Internally, `VectorOfArrays` stores all elements of all
@@ -39,7 +39,7 @@ struct VectorOfArrays{
3939
VT<:AbstractVector{T},
4040
VI<:AbstractVector{Int},
4141
VD<:AbstractVector{Dims{M}}
42-
} <: AbstractVector{AbstractArray{T,N}}
42+
} <: AbstractVector{Array{T,N}}
4343
data::VT
4444
elem_ptr::VI
4545
kernel_size::VD

0 commit comments

Comments
 (0)