Reference
C Library
IOstream Library
Strings library
STL Containers
STL Algorithms
Miscellaneous
Miscellaneous
complex
exception
functional
iterator
limits
locale
memory
new
numeric
stdexcept
typeinfo
utility
valarray
functional
binary_function
unary_function
operator classes:
divides
equal_to
greater
greater_equal
less
less_equal
logical_and
logical_not
logical_or
minus
modulus
multiplies
negate
not_equal_to
plus
adaptor functions:
bind1st
bind2nd
mem_fun
mem_fun_ref
not1
not2
ptr_fun
types:
binary_negate
binder1st
binder2nd
const_mem_fun1_ref_t
const_mem_fun1_t
const_mem_fun_ref_t
const_mem_fun_t
mem_fun1_ref_t
mem_fun1_t
mem_fun_ref_t
mem_fun_t
pointer_to_binary_function
pointer_to_unary_function
unary_negate


mem_fun1_ref_t

class template
<functional>
template <class S, class T, class A> class mem_fun1_ref_t;

Generate function object class from single-parameter member (reference version)

Generates a binary function object class from a member of class T that takes an argument of type A and returns a value of type S.

mem_fun1_ref_t is generally used as a type. The function mem_fun_ref (also defined in header <functional>) can be used to directly construct an object of this type.

This class is derived from binary_function and is typically defined as:

1
2
3
4
5
6
7
8
9
template <class S, class T, class A>
  class mem_fun1_ref_t : public binary_function <T,A,S>
{
  S (T::*pmem)(A);
public:
  explicit mem_fun1_ref_t ( S (T::*p)(A) ) : pmem (p) {}
  S operator() (T& p, A x) const
    { return (p.*pmem)(x); }
};


Members

constructor
Constructs a binary function object class from member function p of class T. The return type of this member function shall be type compatible with type S.
S operator() (T* p, A x)
Member function taking two parameters: p is an object of type T whose member is to be called with x as argument.

See also