Recent Posts
- First steps in Zig (0.15.2)
- Installing NetWare 3.12 in QEMU
- [Contributed] How to: get root on a Foscam FI9831W (2017)
- Implementing a std::function<>-like wrapper in C++, part 3: using a static storage buffer
- Implementing a std::function<>-like wrapper in C++, part 2: generalizing the return type and arguments
Recent Comments
No comments to show.
Monthly Archives: February 2024
Implementing a std::function<>-like wrapper in C++, part 1: type erasing
Introduction Recently, a chat with a friend peeked my interested: how would you store an arbitrary function and call it, similar to std::function<>. It turned out a plain C function pointer would suffice for this specific use-case, but I got … Continue reading