TSDuck v3.40-4033
MPEG Transport Stream Toolkit
Loading...
Searching...
No Matches
ts::int_enum Concept Reference

A C++20 concept which requires a type to be an integer or an enumeration type. More...

#include <tsIntegerUtils.h>

Concept definition

template<typename T>
concept ts::int_enum = std::is_integral<T>::value || std::is_enum<T>::value
A C++20 concept which requires a type to be an integer or an enumeration type.
Definition tsIntegerUtils.h:23

Detailed Description

A C++20 concept which requires a type to be an integer or an enumeration type.