Lines Matching refs:binary_function
27 struct binary_function
37 : public binary_function<T1, T2, R> // if wraping a binary functor
79 struct plus : binary_function<T, T, T>
85 struct minus : binary_function<T, T, T>
91 struct multiplies : binary_function<T, T, T>
97 struct divides : binary_function<T, T, T>
103 struct modulus : binary_function<T, T, T>
115 struct equal_to : binary_function<T, T, bool>
121 struct not_equal_to : binary_function<T, T, bool>
127 struct greater : binary_function<T, T, bool>
133 struct less : binary_function<T, T, bool>
139 struct greater_equal : binary_function<T, T, bool>
145 struct less_equal : binary_function<T, T, bool>
151 struct logical_and : binary_function<T, T, bool>
157 struct logical_or : binary_function<T, T, bool>
169 struct bit_and : binary_function<T, T, T>
175 struct bit_or : binary_function<T, T, T>
181 struct bit_xor : binary_function<T, T, T>
208 : public binary_function<typename Predicate::first_argument_type,
300 class pointer_to_binary_function : public binary_function<Arg1, Arg2, Result>
319 class mem_fun1_t : public binary_function<T*, A, S> // deprecated in C++11, removed in C++17
338 class mem_fun1_ref_t : public binary_function<T, A, S> // deprecated in C++11, removed in C++17
357 class const_mem_fun1_t : public binary_function<const T*, A, S> // deprecated in C++11, remove…
376 class const_mem_fun1_ref_t : public binary_function<T, A, S> // deprecated in C++11, removed i…
400 : public binary_function<T1, T2, R> // iff sizeof...(ArgTypes) == 2 and
533 struct _LIBCPP_TEMPLATE_VIS plus : binary_function<_Tp, _Tp, _Tp>
560 struct _LIBCPP_TEMPLATE_VIS minus : binary_function<_Tp, _Tp, _Tp>
587 struct _LIBCPP_TEMPLATE_VIS multiplies : binary_function<_Tp, _Tp, _Tp>
614 struct _LIBCPP_TEMPLATE_VIS divides : binary_function<_Tp, _Tp, _Tp>
641 struct _LIBCPP_TEMPLATE_VIS modulus : binary_function<_Tp, _Tp, _Tp>
695 struct _LIBCPP_TEMPLATE_VIS equal_to : binary_function<_Tp, _Tp, bool>
722 struct _LIBCPP_TEMPLATE_VIS not_equal_to : binary_function<_Tp, _Tp, bool>
749 struct _LIBCPP_TEMPLATE_VIS greater : binary_function<_Tp, _Tp, bool>
778 struct _LIBCPP_TEMPLATE_VIS greater_equal : binary_function<_Tp, _Tp, bool>
805 struct _LIBCPP_TEMPLATE_VIS less_equal : binary_function<_Tp, _Tp, bool>
832 struct _LIBCPP_TEMPLATE_VIS logical_and : binary_function<_Tp, _Tp, bool>
859 struct _LIBCPP_TEMPLATE_VIS logical_or : binary_function<_Tp, _Tp, bool>
913 struct _LIBCPP_TEMPLATE_VIS bit_and : binary_function<_Tp, _Tp, _Tp>
940 struct _LIBCPP_TEMPLATE_VIS bit_or : binary_function<_Tp, _Tp, _Tp>
967 struct _LIBCPP_TEMPLATE_VIS bit_xor : binary_function<_Tp, _Tp, _Tp>
1032 : public binary_function<typename _Predicate::first_argument_type,
1125 : public binary_function<_Arg1, _Arg2, _Result>
1155 : public binary_function<_Tp*, _Ap, _Sp>
1191 : public binary_function<_Tp, _Ap, _Sp>
1227 : public binary_function<const _Tp*, _Ap, _Sp>
1263 : public binary_function<_Tp, _Ap, _Sp>
1479 : public binary_function<_A1, _A2, _Rp>