#ifndef CORE_CONCEPTS_HH #define CORE_CONCEPTS_HH 1 #pragma once namespace vx { template concept Arithmetic = std::is_arithmetic_v; template concept Integer = std::is_integral_v; template concept FloatingPoint = std::is_floating_point_v; } // namespace vx #endif /* CORE_CONCEPTS_HH */