Releases: nazotronic/Dynamic-library
Releases · nazotronic/Dynamic-library
Release list
Initial release v1.0.0
The first release of the DynamicArray library
✨ Features
- Automatically resizes array when adding new elements
- Supports any data type (int, float, structs, etc.)
- Easy functions to add, remove, and access elements
- Optional max size and step settings for memory control
🔧 Requirements
- No external libraries
🔧 Usage
- Use
add()oradd(value)to insert items - Use
del(index)to remove an item by index - Access elements with
array[i] - Use
setStep(step)to set how many items to grow at once - Use
setMaxSize(size)to limit total array size