template<
class Arg1,
class Arg2,
class Result
> class pointer_to_binary_function : public std::binary_function<Arg1, Arg2, Result>; (until C++17)(deprecated since C++11)
std::pointer_to_binary_function is a function object that acts as a wrapper around a binary function.
Member functions
(constructor) constructs a new pointer_to_binary_function object with the supplied function (public member function) operator() calls the stored function (public me