◆ minlog10denormal
Callable object computing the least value for which eve::exp returns a non denormal result. Required header:
Parameters
Return value the call
ExampleSee it live on Compiler Explorer #include <eve/constant/minlog10denormal.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;
std::cout << "---- simd" << std::endl
<< "-> minlog10denormal(as<wide_ft>()) = " << eve::minlog10denormal(eve::as<wide_ft>()) << std::endl
double xf;
std::cout << "---- scalar" << std::endl
return 0;
}
constexpr callable_minlog10denormal_ minlog10denormal Callable object computing the least value for which eve::exp returns a non denormal result. Definition: minlog10denormal.hpp:57 |