Lines Matching defs:operator
23 enumbitops::operator~, \
24 enumbitops::operator!, \
25 enumbitops::operator|, \
26 enumbitops::operator&, \
27 enumbitops::operator^, \
28 enumbitops::operator|=, \
29 enumbitops::operator&=, \
30 enumbitops::operator^=
40 inline constexpr T operator~(T a)
48 inline constexpr bool operator!(T a)
56 inline constexpr T operator|(T a, T b)
64 inline constexpr std::underlying_type_t<T> operator&(T a, T b)
72 inline constexpr T operator^(T a, T b)
80 inline constexpr T &operator|=(T &a, T b)
87 inline constexpr T &operator&=(T &a, T b)
95 inline constexpr T &operator^=(T &a, T b)