Searched defs:not_equal_to (Results 1 – 4 of 4) sorted by relevance
46 template struct std::not_equal_to<void*>; member in std47 template struct std::not_equal_to<gnu_obj>; member in std48 template struct std::not_equal_to<gnu_t<long> >; member in std
39 struct not_equal_to { struct42 [[nodiscard]] constexpr bool operator()(_Tp &&__t, _Up &&__u) const in operator()47 using is_transparent = void;
205 struct not_equal_to : public binary_function<_Tp, _Tp, bool> struct208 operator()(const _Tp& __x, const _Tp& __y) const in operator()
181 struct not_equal_to : public binary_function<_Tp,_Tp,bool> struct183 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x != __y; } in operator()