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

Specify that a type is a scalar pointer to a type that has a plain translation. More...

#include <eve/concept/ptr_translation.hpp>

Detailed Description

Example Types

  • std::byte*

Concept definition

template<typename T>
concept eve::translatable_ptr = detail::scalar_pointer<T> && has_plain_translation<value_type_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
Specify that a type is a scalar pointer to a type that has a plain translation.
Definition ptr_translation.hpp:26