std::mem_fun_t, std::mem_fun1_t, std::const_mem_fun_t, std::const_mem_fun1_t - cppreference.com
From cppreference.com
| Defined in header |
||
|
|
(1) | (deprecated in C++11) (removed in C++17) |
|
|
(2) | (deprecated in C++11) (removed in C++17) |
|
|
(3) | (deprecated in C++11) (removed in C++17) |
|
|
(4) | (deprecated in C++11) (removed in C++17) |
Wrapper around a member function pointer. The class instance whose member function to call is passed as a pointer to the operator().
1) Wraps a non-const member function with no parameters.
2) Wraps a const member function with no parameters.
3) Wraps a non-const member function with a single parameter.
4) Wraps a const member function with a single parameter.