Share

AcArray::remove

C++

bool remove(
    const T& value, 
    int start = 0
);

Description

This function is a combination of AcArray::find() followed by AcArray::removeAt(). That is, this function returns true if, and only if, the array contains value searching from index position start onwards, in which case the first occurrence of value is removed.

Parameters

Parameters Description
value Input value to search for in this array
start Input index to start searching from

Links

AcArray

Was this information helpful?