framework
framework copied to clipboard
Add Array implementation with stack allocation
For temporary and small array, it may be useful to allocate them on the stack instead of using the heap.
Add a StackArray class which used Array implementation with a specific allocator to use the stack if the size of the array is less than a specified size.
Need #45