ALib C++ Library
Library Version: 2510 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 510 of file records.inl.

Concept definition

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