Tag: std::function
2 posts
-
[2026] C++ std::function vs Function Pointers: Flexibility vs Speed
std::function vs raw function pointers: pointers are faster and smaller; std::function type-erases lambdas with captures and functors. Callback design, ...
-
[2026] C++ Type Erasure Complete Guide | Unified Interfaces Without Inheritance
Master C++ Type Erasure: hide concrete types behind stable interfaces for static polymorphism. Complete guide to std::function, std::any, manual vtable ...