The vector structure.
More...
#include <vector.h>
|
size_t | size |
| Field for determining the amount of elements actually stored in memory.
|
size_t | capacity |
| Field for determining the amount of possible elements that can be stored in memory without resizing the vector.
|
data_type * | data |
| Contiguous memory segment with in data is stored.
|
The vector structure.
Definition at line 39 of file vector.h.
◆ capacity
Field for determining the amount of possible elements that can be stored in memory without resizing the vector.
Definition at line 43 of file vector.h.
◆ data
Contiguous memory segment with in data is stored.
Definition at line 45 of file vector.h.
◆ size
Field for determining the amount of elements actually stored in memory.
Definition at line 41 of file vector.h.
The documentation for this struct was generated from the following file: