Right now, when a vector is disposed of through the C API, its slots in the vectors array just keeps wasting memory.
We want it to be the case that when a new vector is made, it takes up the first free spot in the array if there is any and only extends the array if it needs to.
Right now, when a vector is disposed of through the C API, its slots in the
vectorsarray just keeps wasting memory.We want it to be the case that when a new vector is made, it takes up the first free spot in the array if there is any and only extends the array if it needs to.