A function adaptor for function reference objects.
template<class S, class T> class mem_fun_ref_t : public unary_function<T, S> explicit mem_fun_ref_t(S (T::*p)() );
The function mem_fun_ref_t calls the member function reference it is initialized with usina a given a reference argument.