C++
4 articles
2024
Implementing a std::function<>-like wrapper in C++, part 3: using a static storage buffer
Previously, we’ve made our version of std::move_only_function<> generic so that it can be used to store any function signature, …
Read more
Implementing a std::function<>-like wrapper in C++, part 2: generalizing the return type and arguments
Introduction Previously, we’ve seen a way to implement our own version of std::move_only_function<>. The implementation we ended …
Read more