|
dot-xx
A personal collection of small C++ modules
|
Class == int means free function (can't have a method on int) More...
Public Member Functions | |
| constexpr | fn_ptr_wrapper (Callable c_ptr) |
| constexpr decltype(auto) | operator() (Args... args) const noexcept(noexcept(this->ptr(std::forward< Args >(args)...))) |
| constexpr decltype(auto) | operator() (Class c, Args... args) const noexcept(noexcept((std::forward< Class >(c).*(this->ptr))(std::forward< Args >(args)...))) |
Class == int means free function (can't have a method on int)