mal-packet-weaver
C++20 packet serialization/deserialization library.
Loading...
Searching...
No Matches
mal_toolkit::EnumClassConcept Concept Reference

Concept to check if a type is an enumeration class. More...

#include "template.hpp"

Concept definition

template<typename T>
concept mal_toolkit::EnumClassConcept = std::is_enum_v<T> && !std::convertible_to<T, int>
Concept to check if a type is an enumeration class.
Definition template.hpp:249

Detailed Description

Concept to check if a type is an enumeration class.

Definition at line 249 of file template.hpp.