aboutsummaryrefslogtreecommitdiff
path: root/MemoryManager.h
Commit message (Collapse)AuthorAgeFilesLines
* feat(MemoryManager): Implement global M_STDSyndamia2026-05-121-0/+2
| | | | | | | This is useful in case you don't want to use a specific memory manager. Anywhere you've included a feature, which uses memory manager, you can always provide M_STD without having to create (and manage) your own value.
* feat(MemoryManager): Implement M_std_trackedSyndamia2026-05-121-0/+1
| | | | | Functions like M_std, but also tracks allocated and freed memory, allowing all allocated memory to be destroyed.
* feat: Implement hash tableSyndamia2026-05-121-0/+4
|
* feat!: Refactor using MemoryManagerSyndamia2026-05-121-0/+16
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.