Searched refs:MyBool (Results 1 – 2 of 2) sorted by relevance
88 struct MyBool { struct90 constexpr explicit MyBool(bool v) : value(v) {} in MyBool() argument97 inline constexpr MyBool operator==(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexce… in operator ==() argument98 return MyBool(LHS.value == RHS.value); in operator ==()100 inline constexpr MyBool operator!=(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexce… in operator !=()101 return MyBool(LHS.value != RHS.value); in operator !=()103 inline constexpr MyBool operator<(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexcep… in operator <()104 return MyBool(LHS.value < RHS.value); in operator <()106 inline constexpr MyBool operator<=(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexce… in operator <=()107 return MyBool(LHS.value <= RHS.value); in operator <=()[all …]
25 @property (readwrite) BOOL MyBool; property