{
}
Specifies that a type is a Conditional Expression.
Definition conditional.hpp:28
The concept floating_value<T> is satisfied if and only if T satisfies eve::value and the element type...
Definition value.hpp:116
The concept logical_value<T> is satisfied if and only if T satisfies eve::value and the element type ...
Definition value.hpp:134
constexpr auto tand
elementwise_callable object computing the tangent from an input in degrees.
Definition tand.hpp:78
typename decltype(detail::as_translated_type(as< T >{}))::type translate_t
Returns the final translated type of T.
Definition translation.hpp:107
EVE Main Namespace.
Definition abi.hpp:19
#include <eve/module/math.hpp>
#include <iostream>
{
eve::wide wf = {0.0, 0.25, 0.5, 2.0, -0.0, -0.25, -0.5, -2.0};
std::cout <<
"<- wf = " <<
wf <<
"\n";
std::cout <<
"-> tand(wf) = " <<
eve::tand(
wf) <<
"\n";
std::cout <<
"-> tand[wf != -2.0f](wf) = " <<
eve::tand[
wf != -2.0f](
wf) <<
"\n";
std::cout <<
"-> tand[quarter_circle](wf)= " <<
eve::tand[eve::quarter_circle](
wf) <<
"\n";
}
Conditional expression ignoring the k last lanes from a eve::simd_value.
Definition conditional.hpp:320
Wrapper for SIMD registers.
Definition wide.hpp:94