Determines if a type can be translated.
More...
#include <eve/traits/translation.hpp>
- Note
- This also covers non-translatable types as their translation target is themselves by default.
template<typename T>
concept translatable = std::same_as<typename translation_of<T>::type, T>
|| std::is_enum_v<T>
Defines the requirements for a struct to be translatable.
Definition translation.hpp:62
Determines if a type can be translated.
Definition translation.hpp:73