|
inlineconstexpr |
lable object constructing a SoA value.
Callable object constructing a SoA value.
Defined in Header
Parameters
t
Type to construct. By default, it's equal to kumi::tuple<eve::element_type_t<Ws>...>
ws
Variadic list of eve::simd_value to zip.Return value
*A Callable Object performing the same kind of operation but returning its result as a SIMD value.
TODO
Required header: #include <eve/module/core.hpp>
Member | Effect |
---|---|
operator() | Construct a eve::wide of a given eve::product_type from values |
For scalar types returns a kumi::tuple or a product type
t | Type to construct. By default, it's equal to kumi::tuple<eve::element_type_t<Ws>...> |
ws | Variadic list of eve::simd_value to zip. |
Return value
Construct an instance of eve::wide
<Target>
by aggregating each element of each values ws
.
TODO