◆ maxlog10
Callable object computing the greatest positive value for which eve::exp10 returns a finite result. Required header:
Parameters
Return value the call
ExampleSee it live on Compiler Explorer #include <eve/constant/maxlog10.hpp>
#include <eve/wide.hpp>
#include <iostream>
using wide_ft = eve::wide<float>;
int main()
{
wide_ft wxf;
std::cout << "---- simd" << std::endl
double xf;
std::cout << "---- scalar" << std::endl
return 0;
}
constexpr callable_maxlog10_ maxlog10 Callable object computing the greatest positive value for which eve::exp10 returns a finite result. Definition: maxlog10.hpp:57 |