aboutsummaryrefslogtreecommitdiff
path: root/include/cru/common/bitmask.hpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-06-28 00:03:11 +0800
committercrupest <crupest@outlook.com>2020-06-28 00:03:11 +0800
commit06d1d0442276a05b6caad6e3468f4afb1e8ee5df (patch)
treeebd46f0fb7343dc57bf947b7b5fffc139c3ddeac /include/cru/common/bitmask.hpp
parente11be6caa9ef9b2b198ca61846e32f469627556e (diff)
downloadcru-06d1d0442276a05b6caad6e3468f4afb1e8ee5df.tar.gz
cru-06d1d0442276a05b6caad6e3468f4afb1e8ee5df.tar.bz2
cru-06d1d0442276a05b6caad6e3468f4afb1e8ee5df.zip
...
Diffstat (limited to 'include/cru/common/bitmask.hpp')
-rw-r--r--include/cru/common/bitmask.hpp42
1 files changed, 0 insertions, 42 deletions
diff --git a/include/cru/common/bitmask.hpp b/include/cru/common/bitmask.hpp
deleted file mode 100644
index ddfdc86b..00000000
--- a/include/cru/common/bitmask.hpp
+++ /dev/null
@@ -1,42 +0,0 @@
-#pragma once
-#include "Base.hpp"
-
-namespace cru {
-template <typename Tag, typename TUnderlying = unsigned>
-struct Bitmask final {
- using Underlying = TUnderlying;
-
- constexpr Bitmask() : value(0) {}
- constexpr explicit Bitmask(TUnderlying value) : value(value) {}
-
- CRU_DEFAULT_COPY(Bitmask)
- CRU_DEFAULT_MOVE(Bitmask)
-
- ~Bitmask() = default;
-
- Bitmask operator|(Bitmask rhs) const { return Bitmask(value | rhs.value); }
- Bitmask operator&(Bitmask rhs) const { return Bitmask(value & rhs.value); }
- Bitmask operator^(Bitmask rhs) const { return Bitmask(value ^ rhs.value); }
- Bitmask operator~() const { return Bitmask(~value); }
- Bitmask& operator|=(Bitmask rhs) {
- value |= rhs.value;
- return *this;
- }
- Bitmask& operator&=(Bitmask rhs) {
- value &= rhs.value;
- return *this;
- }
- Bitmask& operator^=(Bitmask rhs) {
- value ^= rhs.value;
- return *this;
- }
-
- bool operator==(Bitmask rhs) const { return this->value == rhs.value; }
- bool operator!=(Bitmask rhs) const { return this->value != rhs.value; }
-
- explicit operator TUnderlying() const { return value; }
- explicit operator bool() const { return value != 0; }
-
- TUnderlying value;
-};
-} // namespace cru