E.V.E
v2023.02.15
eve::simd_value Concept Reference

Specifies that a type a SIMD type. More...

#include <eve/concept/vectorized.hpp>

Detailed Description

Specifies that a type a SIMD type.

The concept simd_value<T> is satisfied if and only if T satisfies either eve::arithmetic_simd_value or eve::logical_simd_value.

Examples

Concept definition

template<typename T>
concept eve::simd_value = arithmetic_simd_value<T> || logical_simd_value<T>
Specify that a type represents a logical SIMD value.
Definition: simd.hpp:45
Specifies that a type a SIMD type.
Definition: vectorized.hpp:33