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

Checks that all types Ts 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
TsType to process

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

Concept definition

template<typename... Ts>
concept same_types = same_lanes_or_scalar<Ts...> && _::type_check<Ts...>()
Checks that all types Ts are either scalar or share a common number of lanes.
Definition same_lanes.hpp:63
Checks that all types Ts are scalars of a single type U or simd_values sharing the same lane count an...
Definition same_types.hpp:48