osurs  0.0.1
Data Fields
ArrayList Struct Reference

Arraylist. More...

#include <arraylist.h>

Data Fields

void ** elements
 
size_t capacity
 
size_t size
 

Detailed Description

Arraylist.

This structure represents an ArrayList data structure. It consists of a pointer to an array of void pointers (elements), an integer capacity representing the number of elements in the list, and an integer size representing the list's capacity.

Field Documentation

◆ capacity

size_t ArrayList::capacity

Number of elements in the list.

◆ elements

void** ArrayList::elements

Data elements array.

◆ size

size_t ArrayList::size

List capacity.


The documentation for this struct was generated from the following file: