Skip to content

Initial release v1.0.0

Latest

Choose a tag to compare

@nazotronic nazotronic released this 08 Jun 16:18

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() or add(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