Function CSPArray<T>::Shrink()
Description:
Decreases the size of the array by a specified number of T objects.
 |
Prototype:
void Shrink(unsigned long ulSize);
Arguments:
- unsigned long ulSize [IN]
The size, in units of type T, that the array will shrink by.
Return value:
No return value (void).
Remarks:
The size of the array is decreased, truncating the content.
See also:
member functions Grow(), GetSize(), SetSize(), Resize(), Empty()
|
|