blob: 10cb74adba9c519d009d5122e687221d307dddde (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
namespace math
{
template<typename T>
concept Arithmetic = std::is_arithmetic_v<T>;
template<typename T>
concept Integer = std::is_integral_v<T>;
template<typename T>
concept FloatingPoint = std::is_floating_point_v<T>;
} // namespace math
|