mem_fun1_ref_t
mem_fun1_ref_t
template<class R, class T, class A>
struct mem_fun1_ref_t : public binary_function<T *, A, R> {
explicit mem_fun1_ref_t(R (T::*pm)(A));
R operator()(T& x, A arg);
};
The template class stores a copy of pm
, which must be a pointer to a member function of class T
, in a private member object. It defines its member function operator()
as returning (x.*pm)(arg)
.