I have a big vector of vectors. Is there any way to vcat/hcat them without splatting?
arr_of_arr = Vector[[1],[2,3],[4,5]] vcat(arr_of_arr...) I'm asking because splatting big arrays is a performance issue (and IIRC it blows the stack at some point).
