/* * Copyright (C) 2022 Riyyi * * SPDX-License-Identifier: MIT */ #pragma once #include // is_integral_v, floating_point_v namespace Util::Concepts { template concept Integral = std::is_integral_v; template concept FloatingPoint = std::is_floating_point_v; } // namespace Util::Concepts using Util::Concepts::FloatingPoint; using Util::Concepts::Integral;