15 requires std::is_enum_v<T>
18 return static_cast<std::underlying_type_t<T>
>(t);
23#define DEFINE_BITWISE_OPERATORS(type) \
24constexpr type operator|(type l, type r) \
26 return static_cast<type>(nc::utility::to_underlying<type>(l) | nc::utility::to_underlying<type>(r)); \
28constexpr type operator&(type l, type r) \
30 return static_cast<type>(nc::utility::to_underlying<type>(l) & nc::utility::to_underlying<type>(r)); \
32constexpr type operator~(type v) \
34 return static_cast<type>(~nc::utility::to_underlying<type>(v)); \
36constexpr type operator^(type l, type r) \
38 return static_cast<type>(nc::utility::to_underlying<type>(l) ^ nc::utility::to_underlying<type>(r)); \
40constexpr type operator<<(type l, type r) \
42 return static_cast<type>(nc::utility::to_underlying<type>(l) << nc::utility::to_underlying<type>(r)); \
44constexpr type operator>>(type l, type r) \
46 return static_cast<type>(nc::utility::to_underlying<type>(l) >> nc::utility::to_underlying<type>(r)); \
constexpr auto to_underlying(T t) -> std::underlying_type_t< T >
Convert an enum value to its underlying type.
Definition: EnumUtilities.h:16