Realloc the contents of an array
array = the array which will be resized numItems = the new size for the array init = whether to init the newly allocated items to their default values or not
int[] foo; foo.alloc(20); foo.realloc(10); // <--
See Implementation
Realloc the contents of an array
array = the array which will be resized numItems = the new size for the array init = whether to init the newly allocated items to their default values or not