aboutsummaryrefslogtreecommitdiff
path: root/src/operation/logic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/operation/logic.h')
-rw-r--r--src/operation/logic.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/operation/logic.h b/src/operation/logic.h
index 23393b2..3e447d6 100644
--- a/src/operation/logic.h
+++ b/src/operation/logic.h
@@ -23,6 +23,9 @@ template <
>
using Xor = Boolean<X::value ^ Y::value>;
+template <typename X>
+using Not = Boolean<!X::value>;
+
}
#endif // TYPEASVALUE_SRC_OPERATION_LOGIC_H_