PtrArray.insert

Inserts an element into the pointer array at the given index. The array will grow in size automatically if necessary.

class PtrArray
void
insert
(
int index
,
void* data
)

Parameters

index int

the index to place the new element at, or -1 to append

data void*

the pointer to add.

Meta

Since

2.40