logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

std::pointer_to_binary_function< _Arg1, _Arg2, _Result > - One of the adaptors for function pointers.

Author

       Generated automatically by Doxygen for libstdc++ from the source code.

                                                    libststd::pointer_to_binary_..._Arg1,_Arg2,_Result>(3cxx)

Detailed Description

template<typename_Arg1,typename_Arg2,typename_Result>
       class std::pointer_to_binary_function< _Arg1, _Arg2, _Result >"One of the adaptorsforfunctionpointers.

Member Typedef Documentation

template<typename_Arg1,typename_Arg2,typename_Result>typedef_Arg1std::binary_function<_Arg1,_Arg2,_Result>::first_argument_type[inherited]
       first_argument_type is the type of the first argument

   template<typename_Arg1,typename_Arg2,typename_Result>typedef_Resultstd::binary_function<_Arg1,_Arg2,_Result>::result_type[inherited]
       result_type is the return type

   template<typename_Arg1,typename_Arg2,typename_Result>typedef_Arg2std::binary_function<_Arg1,_Arg2,_Result>::second_argument_type[inherited]
       second_argument_type is the type of the second argument

Name

       std::pointer_to_binary_function< _Arg1, _Arg2, _Result > - One of the adaptorsforfunctionpointers.

Synopsis

       #include <functional>

       Inherits std::binary_function<_Arg1,_Arg2,_Result>.

   PublicTypestypedef_Arg1first_argument_type
           first_argument_type is the type of the first argument
       typedef _Result result_type
           result_type is the return type
       typedef_Arg2second_argument_type
           second_argument_type is the type of the second argument

   PublicMemberFunctionspointer_to_binary_function (_Result(*__x)(_Arg1, _Arg2))
       _Result operator() (_Arg1 __x, _Arg2 __y) const

   ProtectedAttributes
       _Result(* _M_ptr )(_Arg1, _Arg2)

See Also