julia> reduce(vcat, [[1,2,3], [4, 5], [6]])
6-element Array{Int64,1}:
1
2
3
4
5
6
For more information, check out ?reduce and ?vcat.
julia> reduce(vcat, [[1,2,3], [4, 5], [6]])
6-element Array{Int64,1}:
1
2
3
4
5
6
For more information, check out ?reduce and ?vcat.