aboutsummaryrefslogtreecommitdiff
path: root/Array.c
Commit message (Collapse)AuthorAgeFilesLines
* feat!: Refactor using MemoryManagerSyndamia2026-05-121-97/+0
| | | | | | | | The idea is to provide a universal memory management "API", through which you allocate and deallocate. This allows our implementations (for String and Vector) to be more generic. It does also allow usage of different allocators depending on situation.
* fix: Do not produce side effects on failed resizeSyndamia2026-04-211-1/+3
|
* fix(A_new): Handle out of memory conditionSyndamia2026-04-211-0/+3
|
* feat(Array): Implement A_ppushSyndamia2026-04-211-0/+6
|
* fix(A_push): Soft return instead of abortSyndamia2026-04-211-2/+2
|
* feat!: Function rename and standardizeSyndamia2026-04-211-13/+19
|
* feat!: Initial implementationSyndamia2026-04-211-0/+80