NcEngine
EnumUtilities.h
Go to the documentation of this file.
1
5#pragma once
6
7#include <type_traits>
8
9namespace nc::utility
10{
14 template<class T>
15 requires std::is_enum_v<T>
16 constexpr auto to_underlying(T t) -> std::underlying_type_t<T>
17 {
18 return static_cast<std::underlying_type_t<T>>(t);
19 }
20} // namespace nc::utility
21
23#define DEFINE_BITWISE_OPERATORS(type) \
24constexpr type operator|(type l, type r) \
25{ \
26 return static_cast<type>(nc::utility::to_underlying<type>(l) | nc::utility::to_underlying<type>(r)); \
27} \
28constexpr type operator&(type l, type r) \
29{ \
30 return static_cast<type>(nc::utility::to_underlying<type>(l) & nc::utility::to_underlying<type>(r)); \
31} \
32constexpr type operator~(type v) \
33{ \
34 return static_cast<type>(~nc::utility::to_underlying<type>(v)); \
35} \
36constexpr type operator^(type l, type r) \
37{ \
38 return static_cast<type>(nc::utility::to_underlying<type>(l) ^ nc::utility::to_underlying<type>(r)); \
39} \
40constexpr type operator<<(type l, type r) \
41{ \
42 return static_cast<type>(nc::utility::to_underlying<type>(l) << nc::utility::to_underlying<type>(r)); \
43} \
44constexpr type operator>>(type l, type r) \
45{ \
46 return static_cast<type>(nc::utility::to_underlying<type>(l) >> nc::utility::to_underlying<type>(r)); \
47}
constexpr auto to_underlying(T t) -> std::underlying_type_t< T >
Convert an enum value to its underlying type.
Definition: EnumUtilities.h:16