TSDuck v3.41-4220
MPEG Transport Stream Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages Concepts
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:24

Detailed Description

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