Searched refs:NoLessThan (Results 1 – 2 of 2) sorted by relevance
81 struct NoLessThan { in test() struct82 constexpr bool operator==(const NoLessThan&) const; in test()83 constexpr bool operator>(const NoLessThan&) const; in test()85 static_assert(HasEqual<std::pair<int, NoLessThan>>); in test()86 static_assert(!HasLess<std::pair<int, NoLessThan>>); in test()87 static_assert(!HasSpaceship<std::pair<int, NoLessThan>>); in test()
145 struct NoLessThan { in test() struct146 constexpr bool operator==(const NoLessThan&) const; in test()147 constexpr bool operator>(const NoLessThan&) const; in test()148 constexpr bool operator>=(const NoLessThan&) const; in test()149 constexpr bool operator<=(const NoLessThan&) const; in test()151 static_assert(!can_synth_three_way<NoLessThan>); in test()