◆ logical_not
Callable object computing the logical NOT operation. Required header: Members Functions
Definition: value.hpp:31 Parameters
Return value Computes the logical NOT of the parameter. the call Supported decoratorsno decorators are supported ExampleSee it live on Compiler Explorer #include <eve/function/logical.hpp>
#include <eve/wide.hpp>
#include <iostream>
using wide_ft = eve::wide<float, eve::fixed<4>>;
int main()
{
wide_ft pf = {3.0f, 0.0f, -3.0f, -0.0};
std::cout << "---- simd" << '\n'
<< " <- pf = " << pf << '\n'
std::int32_t xf = 3, yf = 0;
std::cout << "---- scalar" << '\n'
<< " xf = " << xf << '\n'
<< " yf = " << yf << '\n'
return 0;
}
constexpr callable_logical_not_ logical_not Callable object computing the logical NOT operation. Definition: logical_not.hpp:62 |