There are many interesting C++ sites and blogs. There's no need to repeat / copy the contents.
td::unique_ptr
#include <memory>
auto lambda_to_call = [&](void*) { .. };
std::unique_ptr<void, decltype(lambda_to_call)> rst((void*)1, lambda_to_call);
some Links:
CRTP: injecting/providing methods to a (template) base class through a template class parameter. This might be done to overcome performance penalties of dynamic polymorphism, e.g. to allow inlining.
Hyrum's Law:
With a sufficient number of users of an API,
it does not matter what you promise in the contract:
all observable behaviors of your system
will be depended on by somebody.