Neal Becker wrote:
> I wanted the function of an array that accumulates my results, it starts
> at
> zero size, and resizes as needed. New results are added using
>
> accumulated += new_array
>
> A simple implementation of this is here:
>
> https://gist.github.com/2ab48e25fd460990d045.git
>
>
I wanted the function of an array that accumulates my results, it starts at
zero size, and resizes as needed. New results are added using
accumulated += new_array
A simple implementation of this is here:
https://gist.github.com/2ab48e25fd460990d045.git
I have 2 questions:
1. Is this a reason