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

Specify that a type represents an integral scalar value. The concept unsigned_scalar_value<T> is satisfied if and only if T satisfies eve::arithmetic_scalar_value<T> and std::signed_integral<T>. More...

#include <eve/concept/vectorizable.hpp>

Detailed Description

Examples

  • std::int32_t

Concept definition

template<typename T>
concept eve::signed_integral_scalar_value = arithmetic_scalar_value<T> && std::signed_integral<translate_element_type_t<T>>
Specify that a type represents a type suitable for vectorization The concept arithmetic_scalar_value<...
Definition: scalar.hpp:113
Specify that a type represents an integral scalar value. The concept unsigned_scalar_value<T> is sati...
Definition: vectorizable.hpp:67