Searched refs:_Arg2 (Results 1 – 2 of 2) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/libcxx/include/__functional/ |
| H A D | pointer_to_binary_function.h | 24 template <class _Arg1, class _Arg2, class _Result> 26 : public binary_function<_Arg1, _Arg2, _Result> 28 _Result (*__f_)(_Arg1, _Arg2); 30 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_binary_function(_Result (*__f)(_Arg1, _Arg2)) in pointer_to_binary_function() argument 32 _LIBCPP_INLINE_VISIBILITY _Result operator()(_Arg1 __x, _Arg2 __y) const in operator() 36 template <class _Arg1, class _Arg2, class _Result> 38 pointer_to_binary_function<_Arg1,_Arg2,_Result> 39 ptr_fun(_Result (*__f)(_Arg1,_Arg2)) in ptr_fun() argument 40 {return pointer_to_binary_function<_Arg1,_Arg2,_Result>(__f);} in ptr_fun()
|
| H A D | binary_function.h | 21 template <class _Arg1, class _Arg2, class _Result> 25 typedef _Arg2 second_argument_type;
|