◆ allbits
Callable object computing the allbits value. Required header:
Parameters
Return value the call ExampleSee it live on Compiler Explorer #include <eve/constant/allbits.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" << '\n'
float xf;
std::int16_t xi;
std::cout << "---- scalar" << '\n'
return 0;
}
constexpr callable_allbits_ allbits Callable object computing the allbits value. Definition: allbits.hpp:54 |