◆ mzero
Callable object computing the negative zero value. Required header:
Parameters
Return value the call ExampleSee it live on Compiler Explorer #include <eve/constant/mzero.hpp>
#include <eve/wide.hpp>
#include <iostream>
using wide_ft = eve::wide<float>;
using wide_it = eve::wide<std::int16_t>;
int main()
{
wide_ft wxf;
wide_it wxi;
std::cout << "---- simd" << std::endl
double xf;
std::int16_t xi;
std::cout << "---- scalar" << std::endl
return 0;
}
constexpr callable_mzero_ mzero Callable object computing the negative zero value. Definition: mzero.hpp:52 |