Vector of vectors supertype

Either

foo(v::Vector{<:Vector}) = return v

or

foo(v::Vector{Vector{T}}) where T = return v
1 Like