constexpr type operator|(type l, type r) \
{ \
return static_cast<type>(nc::utility::to_underlying<type>(l) | nc::utility::to_underlying<type>(r)); \
} \
constexpr type operator&(type l, type r) \
{ \
return static_cast<type>(nc::utility::to_underlying<type>(l) & nc::utility::to_underlying<type>(r)); \
} \
constexpr type operator~(type v) \
{ \
return static_cast<type>(~nc::utility::to_underlying<type>(v)); \
} \
constexpr type operator^(type l, type r) \
{ \
return static_cast<type>(nc::utility::to_underlying<type>(l) ^ nc::utility::to_underlying<type>(r)); \
} \
constexpr type operator<<(type l, type r) \
{ \
return static_cast<type>(nc::utility::to_underlying<type>(l) << nc::utility::to_underlying<type>(r)); \
} \
constexpr type operator>>(type l, type r) \
{ \
return static_cast<type>(nc::utility::to_underlying<type>(l) >> nc::utility::to_underlying<type>(r)); \
}
Define operators for an enum.