Searched refs:MyBoolExplicit (Results 1 – 1 of 1) sorted by relevance
45 struct MyBoolExplicit { struct47 constexpr explicit MyBoolExplicit(bool v) : value(v) {} in MyBoolExplicit() function54 inline constexpr MyBoolExplicit operator==(const ComparesToMyBoolExplicit& LHS, const ComparesToMyB… in operator ==() argument55 return MyBoolExplicit(LHS.value == RHS.value); in operator ==()57 inline constexpr MyBoolExplicit operator!=(const ComparesToMyBoolExplicit& LHS, const ComparesToMyB… in operator !=()58 return MyBoolExplicit(LHS.value != RHS.value); in operator !=()60 inline constexpr MyBoolExplicit operator<(const ComparesToMyBoolExplicit& LHS, const ComparesToMyBo… in operator <()61 return MyBoolExplicit(LHS.value < RHS.value); in operator <()64 return MyBoolExplicit(LHS.value <= RHS.value); in operator <=()67 return MyBoolExplicit(LHS.value > RHS.value); in operator >()[all …]