C++
AcArray<T,R>& removeSubArray( int startIndex, int endIndex );
Description
This function removes the elements that start at position startIndex through the endIndex. The logical length will decrease by the number of elements removed. The array must not be empty.
Parameters
Parameters | Description |
---|---|
startIndex | Input index for the beginning of the subarray |
endIndex | Input index for the end of the subarray |