Question: I am trying to implement a “static” sized function, that uses preallocated store, unlike std::function that uses dynamic heap allocations. However, it does not work as expected, since copies of the callable (copy elision does not kick in like ...