Templa 0.0.1-alpha
C++ Metaprogramming Utilities
Loading...
Searching...
No Matches
templa::concepts::Integral Concept Reference

Concept to check if a type is an integral type. More...

#include <concepts.hpp>

Concept definition

template<typename T>
concept templa::concepts::Integral = std::is_integral_v<T>
Concept to check if a type is an integral type.
Definition concepts.hpp:34

Detailed Description

Concept to check if a type is an integral type.

Equivalent to std::is_integral_v<T>.

Template Parameters
TType to check.