summaryrefslogtreecommitdiffstats
path: root/core/math/concepts.hh
diff options
context:
space:
mode:
Diffstat (limited to 'core/math/concepts.hh')
-rw-r--r--core/math/concepts.hh11
1 files changed, 0 insertions, 11 deletions
diff --git a/core/math/concepts.hh b/core/math/concepts.hh
deleted file mode 100644
index 19d372c..0000000
--- a/core/math/concepts.hh
+++ /dev/null
@@ -1,11 +0,0 @@
-#pragma once
-
-namespace math
-{
-template<typename type>
-concept arithmetic = std::is_arithmetic_v<type>;
-template<typename type>
-concept signed_arithmetic = std::is_arithmetic_v<type> && std::is_signed_v<type>;
-template<typename type>
-concept unsigned_arithmetic = std::is_arithmetic_v<type> && std::is_unsigned_v<type>;
-} // namespace math