mirror of
https://github.com/AxioDL/kabufuda.git
synced 2025-07-04 12:15:52 +00:00
Add True and False tests for bitwise enums
This commit is contained in:
parent
3a6ee9a70c
commit
630119350b
@ -60,6 +60,14 @@
|
||||
constexpr type operator~(type key) { \
|
||||
using T = std::underlying_type_t<type>; \
|
||||
return type(~static_cast<T>(key)); \
|
||||
} \
|
||||
constexpr bool True(type key) { \
|
||||
using T = std::underlying_type_t<type>; \
|
||||
return static_cast<T>(key) != 0; \
|
||||
} \
|
||||
constexpr bool False(type key) { \
|
||||
using T = std::underlying_type_t<type>; \
|
||||
return static_cast<T>(key) == 0; \
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user