Answers to frequently asked questions
FAQ.57
Is `stack_array` the same as the standard `array`?
No. stack_array is guaranteed to be allocated on the stack. Although a std::array contains its storage directly inside itself, the array object can be put anywhere, including the heap.