Callable object computing the greatest positive value for which eve::exp10 is finite.
Defined in Header
#include <eve/module/math.hpp>
{
template< eve::value T >
}
constexpr callable_maxlog10_ maxlog10
Callable object computing the greatest positive value for which eve::exp10 is finite.
Definition: maxlog10.hpp:50
Lightweight type-wrapper.
Definition: as.hpp:29
Parameters
x
: Type wrapper instance embedding the type of the constant.
Return value
The call eve::maxlog10(as<T>())
returns the greatest positive value for which eve::exp10 is finite.
#include <eve/module/math.hpp>
#include <eve/wide.hpp>
#include <iostream>
#include <iomanip>
int main()
{
wide_ft wxf;
std::cout << "---- simd" << std::setprecision(9) << std::endl
double xf;
std::cout << "---- scalar" << std::endl
return 0;
}
Wrapper for SIMD registers.
Definition: wide.hpp:65