Program Base Library Functions

void* pblArrayListRemoveAt

( pblArrayList* arrayList,
  int index )

Removes the element at the specified position in this list.

Documentation

Removes the element at the specified position in this list. Shifts any subsequent elements to the left (subtracts one from their indices).

Parameters:
arrayList - The list to use
index - Index at which the element is to be removed
Returns:
void * retptr != (void*)-1: The element that was removed, can be NULL
void * retptr == (void*)-1: An error, see pbl_errno PBL_ERROR_OUT_OF_BOUNDS - index is out of range (index < 0 || index >= size())

Alphabetic index



This page was generated with the help of DOC++.