Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The latest version of this topic can be found at mem_fun1_ref_t Class.
An adapter class that allows a non_const member function that takes a single argument to be called as a binary function object when initialized with a reference argument.
Syntax
template <class Result, class Type, class Arg>
class mem_fun1_ref_t : public binary_function<Type, Arg, Result> {
explicit mem_fun1_ref_t(
Result (Type::* _Pm)(Arg));
Result operator()(
Type& left,
Arg right) const;
};
Parameters
_Pm
A pointer to the member function of class Type to be converted to a function object.
left
The object that the _Pm member function is called on.
right
The argument that is being given to _Pm.
Return Value
An adaptable binary function.
Remarks
The template class stores a copy of _Pm, which must be a pointer to a member function of class Type, in a private member object. It defines its member function operator() as returning ( left.* _Pm)( right).
Example
The constructor of mem_fun1_ref_t is not usually used directly; the helper function mem_fun_ref is used to adapt member functions. See mem_fun_ref for an example of how to use member function adaptors.
Requirements
Header: <functional>
Namespace: std
See Also
Thread Safety in the C++ Standard Library
Standard Template Library