Air-Trap 1.0.0
A multiplayer R-Type clone game engine built with C++23 and ECS architecture
Loading...
Searching...
No Matches
rtp::Numeric Concept Reference

A concept that checks if a type is numeric (integral or floating-point). More...

#include <NumericConcept.hpp>

Concept definition

template<typename T>
concept rtp::Numeric = std::is_arithmetic_v<T>
A concept that checks if a type is numeric (integral or floating-point).

Detailed Description

A concept that checks if a type is numeric (integral or floating-point).

Template Parameters
TThe type to check.

Definition at line 54 of file NumericConcept.hpp.