E.V.E
v2023.02.15
Loading...
Searching...
No Matches
eve::translatable Concept Reference
Determines if a type can be translated.
More...
Detailed Description
Determines if a type can be translated.
Note
This also covers non-translatable types as their translation target is themselves by default.
Concept definition
template
<
typename
T>
concept
translatable
= std::same_as<typename translation_of<T>::type, T>
|| std::is_enum_v<T>
||
translatable_struct<T>
eve::translatable_struct
Defines the requirements for a struct to be translatable.
Definition
translation.hpp:62
eve::translatable
Determines if a type can be translated.
Definition
translation.hpp:73
eve
translatable