GetOverHeadLength
Function Usage
Obtains the length of a data description.
Prototype
1 | static size_t GetOverHeadLength(const size_t capacity) |
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
capacity |
Input |
Maximum capacity of an instance. |
Returns
Length of the data description
Constraints
None
Examples
1 2 | size_t capacity = 100U; auto length = ContinuousVectorVector::GetOverHeadLength(capacity); |
Parent topic: ContinuousVectorVector