getCapacityIncrement
Returns the storage increment of the collection.
Declaration
virtual unsigned int getCapacityIncrement() const = 0;Return Value
The storage increment of the collection.
Overview
Subclasses must implement this pure virtual member function. Most collection subclasses allocate their storage in multiples of the capacity increment.
See ensureCapacity for how the capacity increment is used.