Skip to content

Commit

Permalink
Add docstring.
Browse files Browse the repository at this point in the history
  • Loading branch information
tkoolen committed Jan 12, 2020
1 parent e46a068 commit ac27a70
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/custom_collections/CatVector.jl
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit ac27a70

Please sign in to comment.