◆ valmin
Callable object computing the lowest representable value. Required header:
Parameters
Return value the call ExampleSee it live on Compiler Explorer #include <eve/constant/valmin.hpp>
#include <eve/wide.hpp>
#include <iostream>
using wide_ft = eve::wide<float, eve::fixed<4>>;
using wide_it = eve::wide<std::int16_t, eve::fixed<4>>;
int main()
{
wide_ft x;
wide_it y;
std::cout << "---- simd" << '\n'
float xf;
std::int64_t xi;
std::cout << "---- scalar" << '\n'
return 0;
}
constexpr callable_valmin_ valmin Callable object computing the lowest representable value. Definition: valmin.hpp:53 |