E.V.E
v2023.02.15
 
Loading...
Searching...
No Matches
eve::has_plain_translation Concept Reference

Specify that a type can be translated to a plain scalar value. The concept has_plain_translation<T> is satisfied if and only if calling translate_t<T> returns a type that is different from T. More...

#include <eve/concept/translation.hpp>

Detailed Description

Example Types

  • std::byte

Concept definition

template<typename T>
concept eve::has_plain_translation = !std::same_as<translate_t<T>, T>
Specify that a type can be translated to a plain scalar value. The concept has_plain_translation<T> i...
Definition translation.hpp:27