ALib C++ Framework
by
Library Version: 2605 R0
Documentation generated by doxygen
Loading...
Searching...
No Matches
alib::enumrecords::IsSerializable Concept Reference

Description:

Concept that is satisfied if the type trait RecordsTraits is specialized for type TEnum and its type-alias member Type evaluates to ERSerializable or a derived type thereof.

Template Parameters
TEnumThe type to test.

Definition at line 466 of file records.hpp.

#include <records.hpp>

Concept definition

template<typename TEnum>
concept IsSerializable = std::is_base_of_v<ERSerializable, typename RecordsTraits<TEnum>::Type>