Note that in Julia terminology, you are talking about Vector
, which is Array{T,1}
(some languages without multidimensional arrays do call vectors arrays, but not Julia).
Julia allows Vector
s to be extended, and clever overallocation heuristics make it fast.