function2
function2 copied to clipboard
Get pointer to target
@Naios
Great improvement over std::function, but there is no std::function::target counterpart. I use it for logging addresses of underlying callable objects, very useful for debugging:
...
catch (const std::exception &e)
{
LOG_ERROR("Async function 0x%p raised exception: %s", f.target<void(*)(void)>(), e.what());
}
Any chance of implementing such feature?
Good suggestion, maybe this will be added in the future.