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