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

Checks that all types within a product type are scalars of a single type U or simd_values sharing the same lane count and of element type U. More...

#include <eve/concept/same_types.hpp>

Detailed Description

Template Parameters
TProduct type to process

Required header: #include <eve/concept/same_types.hpp>

Concept definition

template<typename T>
concept same_types_tuple = same_lanes_or_scalar_tuple<T> && _::tuple_type_check<T>()
Checks that all types within a product type are either scalar or share a common number of lanes.
Definition same_lanes.hpp:78
Checks that all types within a product type are scalars of a single type U or simd_values sharing the...
Definition same_types.hpp:64