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

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.