Share

AcArray::removeAt

C++

AcArray<T,R>& removeAt(
    int index
);

Description

This function removes the element at position index. The array elements starting at index+1 will have their index position decreased by one and the logical length of the array will decrease by one.

The index must be greater than or equal to zero and less than AcArray::length().

Parameters

Parameters Description
index Input index of the desired element to remove

Links

AcArray

Was this information helpful?