Lines Matching refs:other
179 constexpr Self operator&(Self other) const
181 return Self(GetValue() & other.GetValue());
184 constexpr Self operator|(Self other) const
186 return Self(GetValue() | other.GetValue());
189 constexpr Self operator^(Self other) const
191 return Self(GetValue() ^ other.GetValue());
194 constexpr Self operator&=(Self other)
196 value_ &= other.GetValue();
200 constexpr Self operator|=(Self other)
202 value_ |= other.GetValue();
206 constexpr Self operator^=(Self other)
208 value_ ^= other.GetValue();
215 constexpr bool operator==(Self other) const
217 return value_ == other.value_;
220 constexpr bool operator!=(Self other) const
222 return !(*this == other);