◆ maxflint
Callable object computing the greatest real n representing an integer and such that n != n+1. Required header:
Parameters
Return value the call
ExampleSee it live on Compiler Explorer #include <eve/constant/maxflint.hpp>
#include <eve/wide.hpp>
#include <iostream>
#include <iomanip>
using wide_ft = eve::wide<float>;
int main()
{
wide_ft wxf;
std::cout << "---- simd" << std::endl
double xf;
std::cout << "---- scalar" << std::endl
<< "-> maxflint(as<float>()) = " << std::setprecision(17) << eve::maxflint(eve::as(float())) << std::endl
return 0;
}
constexpr callable_maxflint_ maxflint Callable object computing the greatest real n representing an integer and such that n !... Definition: maxflint.hpp:57 |