Computes the false logical value.
Defined in Header
#include <eve/module/core.hpp>
{
template< eve::value T >
}
constexpr callable_false__ false_
Computes the false logical value.
Definition: false.hpp:52
Lightweight type-wrapper.
Definition: as.hpp:29
Parameters
x
: Type wrapper instance embedding the type of the constant.
Return value
the call eve::false_(as<T>())
returns elementwise, the false logical value.
#include <eve/module/core.hpp>
#include <eve/wide.hpp>
#include <iostream>
int main()
{
wide_ft wxf;
wide_it wxi;
std::cout << "---- simd" << std::endl
double xf;
std::int16_t xi;
std::cout << "---- scalar" << std::endl
<<
"-> false_(as<std::int16_t>()) = " <<
eve::false_(
eve::as(std::int16_t())) << std::endl
return 0;
}
Wrapper for SIMD registers.
Definition: wide.hpp:65