PtrArray.removeIndexFast

Removes the pointer at the given index from the pointer array. The last element in the array is used to fill in the space, so this function does not preserve the order of the array. But it is faster than g_ptr_array_remove_index(). If array has a non-NULL GDestroyNotify function it is called for the removed element.

class PtrArray
void*
removeIndexFast
(
uint index
)

Parameters

index uint

the index of the pointer to remove.

Return Value

Type: void*

the pointer which was removed.

Meta