◆ halfeps
Callable object computing the the half of the machine epsilon. Required header:
Parameters
Return value the call ExampleSee it live on Compiler Explorer #include <eve/constant/halfeps.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_halfeps_ halfeps Callable object computing the the half of the machine epsilon. Definition: halfeps.hpp:54 |