std::nextafter,std::nextafterf,std::nextafterl,std::nexttoward,std::nexttowardf, (3) Linux Manual Page
std::nextafter,std::nextafterf,std::nextafterl,std::nexttoward,std::nexttowardf, – std::nextafter,std::nextafterf,std::nextafterl,std::nexttoward,std::nexttowardf, Synopsis Defined in header <cmath> float nextafter ( float from, float to ); (1) (since C++11) float nextafterf( float from, float to ); double nextafter ( double from, double to ); (2) (since C++11) long double nextafter ( long double from, long double to ); (3) (since C++11) long double nextafterl( long double from, long double to ); Promoted nextafter ( Arithmetic1 from, Arithmetic2 to ); (4) (since C++11) float nexttoward ( float from, long double to ); (5) (since C++11) float…
