Constructor ListBuffer
ListBuffer(T*, int*, int)
Instantiate a new list.
Declaration
public ListBuffer(T* bufferPtr, int* countPtr, int capacity)
Parameters
Type | Name | Description |
---|---|---|
T* | bufferPtr | The address in memory to store the data. |
int* | countPtr | The address in memory to store the number of item of this list.. |
int | capacity | The number of |