◆ one
Callable object computing the 1 value. Required header:
Parameters
Return value the call ExampleSee it live on Compiler Explorer #include <eve/constant/one.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;
}
|