diff --git a/src/custom_collections/CatVector.jl b/src/custom_collections/CatVector.jl index af97c8a2..d673f260 100644 --- a/src/custom_collections/CatVector.jl +++ b/src/custom_collections/CatVector.jl @@ -1,3 +1,9 @@ +""" +$(TYPEDEF) + +An `AbstractVector` subtype that acts as a lazy concatenation of a number +of subvectors. +""" struct CatVector{T, N, V<:AbstractVector{T}} <: AbstractVector{T} vecs::NTuple{N, V} end