std::mem_fun_ref_t, std::mem_fun1_ref_t, std::const_mem_fun_ref_t, std::const_mem_fun1_ref_t - cppreference.com (original) (raw)
Wrapper around a member function pointer. The class instance whose member function to call is passed as a reference to the operator().
Wraps a non-const member function with no parameters.
Wraps a const member function with no parameters.
Wraps a non-const member function with a single parameter.
Wraps a const member function with a single parameter.
[edit] See also
| (deprecated in C++11)(removed in C++17) | creates a wrapper from a pointer to member function, callable with a reference to object (function template) [edit] |
|---|---|
| (deprecated in C++11)(removed in C++17) | wrapper for a pointer to nullary or unary member function, callable with a pointer to object (class template) [edit] |