Survival Royale 1.0.0
A very simple yet funny card game.
Loading...
Searching...
No Matches
vector Struct Reference

The vector structure. More...

#include <vector.h>

Data Fields

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_typedata
 Contiguous memory segment with in data is stored.

Detailed Description

The vector structure.

Definition at line 39 of file vector.h.

Field Documentation

◆ capacity

size_t 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

data_type* data

Contiguous memory segment with in data is stored.

Definition at line 45 of file vector.h.

◆ size

size_t 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: