MySQL 9.6.0
Source Code Documentation
mysql::utils::Is_enum Concept Reference

true if Enum_t is an enumeration type (scoped or not). More...

#include <enumeration_utils.h>

Concept definition

template<class Enum_t>
concept mysql::utils::Is_enum = std::is_enum_v<Enum_t>
true if Enum_t is an enumeration type (scoped or not).
Definition: enumeration_utils.h:44

Detailed Description

true if Enum_t is an enumeration type (scoped or not).

This is equivalent to is_enum_v, but as a concept, is syntactically valid in more contexts.