Y
Hacker News
new
|
ask
|
show
|
jobs
by
sundbry
2591 days ago
An efficient immutable vector can be concatenated much faster without any reallocation of either array; one would probably outperform .push for bigger arrays in this case.
1 comments
BubRoss
2591 days ago
How is that true? push shouldn't be reallocating the array on each call. You seem to be alluding to a linked list of arrays.
link