basedOpinionated utility library |
git clone git://git.dimitrijedobrota.com/based.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING |
is_arithmetic.hpp (237B)
0 #pragma once
2 #include "based/concept/is_floating_point.hpp"
3 #include "based/concept/is_integral.hpp"
5 namespace based::trait
6 {
8 template<class T>
9 concept IsArithmetic = IsIntegral<T> || IsFloatingPoint<T>;
11 } // namespace based::trait