Modules | |
Clone Allocators | |
Clone allocators is a formalized way to pointer containers control the memory of the stored objects, allowing users to apply custom allocators/deallocators for the cloned objects. | |
Inline Array | |
Inline array is a container that stores the data itself not pointers to data, this means there is no memory fragmentation, also for small data types(such as char, short, int, etc.) it's more memory efficient. | |
Inline List | |
Array of Pointers | |
List of Pointers | |