man std::pointer_to_binary_function (Fonctions bibliothèques) - One of the adaptors for function pointers.
NAME
std::pointer_to_binary_function - One of the adaptors for function pointers.
SYNOPSIS
#include <functional>
Inherits std::binary_function< Arg1, Arg2, Result >< Arg1, Arg2, Result >.
Public Types
typedef Arg1 first_argument_type
the type of the first argument
typedef Arg2 second_argument_type
(no surprises here) the type of the second argument
typedef Result result_type
type of the return type
Public Member Functions
pointer_to_binary_function ()
pointer_to_binary_function (Result(*x)(Arg1, Arg2))
Result operator() (Arg1 x, Arg2 y) const
Detailed Description
template<class Arg1, class Arg2, class Result> class std::pointer_to_binary_function< Arg1, Arg2, Result >
One of the adaptors for function pointers.
Definition at line 505 of file functional.
Member Typedef Documentation
template<class Arg1, class Arg2, class Result> typedef Arg1 std::binary_function< Arg1, Arg2, Result >::first_argument_type [inherited]
the type of the first argument
Definition at line 116 of file functional.
template<class Arg1, class Arg2, class Result> typedef Result std::binary_function< Arg1, Arg2, Result >::result_type [inherited]
type of the return type
Definition at line 120 of file functional.
template<class Arg1, class Arg2, class Result> typedef Arg2 std::binary_function< Arg1, Arg2, Result >::second_argument_type [inherited]
(no surprises here) the type of the second argument
Definition at line 119 of file functional.
Author
Generated automatically by Doxygen for libstdc++-v3 Source from the source code.