Computes the logical NOTAND of its arguments.
{
template< eve::value T, eve::value U >
}
constexpr callable_logical_notand_ logical_notand
Computes the logical NOTAND of its arguments.
Definition: logical_notand.hpp:61
#include <eve/module/core.hpp>
#include <eve/wide.hpp>
#include <iostream>
int main()
{
wide_ft pf = {3.0f, -2.0f, -3.0f, 51.04f};
wide_ft qf = {4.0f, -1.0f, -3.0f, 0.0f};
std::cout << "---- simd" << '\n'
<< " <- pf = " << pf << '\n'
<< " <- qf = " << qf << '\n'
float xf = 3.0f, yf = 4.5f;
std::cout << "---- scalar" << '\n'
<< " xf = " << xf << '\n'
<< " yf = " << yf << '\n'
return 0;
}
constexpr callable_is_odd_ is_odd
Returns a logical true if and only if the element value is odd.
Definition: is_odd.hpp:64
constexpr callable_is_even_ is_even
Returns a logical true if and only if the element value is even.
Definition: is_even.hpp:64
Wrapper for SIMD registers.
Definition: wide.hpp:65