Jamba C++ API 8.0.0
Loading...
Searching...
No Matches
pongasoft::Utils::IntegralOrEnum Concept Reference

Concept that encapsulates both an integer and an enum (underlying type is an integral). More...

#include <Concepts.h>

Concept definition

template<typename T>
concept IntegralOrEnum = std::integral<T> || std::is_enum_v<T>
Concept that encapsulates both an integer and an enum (underlying type is an integral).
Definition Concepts.h:53

Detailed Description

Concept that encapsulates both an integer and an enum (underlying type is an integral).