dfx 0.1.0
Linux-based dynamic dataflow executor
Loading...
Searching...
No Matches
dfx::Utils::IsEnum Concept Reference

Concept matching any enumeration type. This is used to constrain Flags to be instantiated only with enum types. More...

#include <dfx-utilities/Flags.hpp>

Concept definition

template<typename T>
concept dfx::Utils::IsEnum = std::is_enum_v<T>
Concept matching any enumeration type. This is used to constrain Flags to be instantiated only with e...
Definition Flags.hpp:102

Detailed Description

Concept matching any enumeration type. This is used to constrain Flags to be instantiated only with enum types.

Template Parameters
TCandidate type.