std::nextafter, std::nexttoward
From cppreference.com
| Defined in header <cmath>
|
||
| float nextafter( float from, float to ); |
(1) | (since C++11) |
| double nextafter( double from, double to ); |
(2) | (since C++11) |
| long double nextafter( long double from, long double to ); |
(3) | (since C++11) |
| Promoted nextafter( Arithmetic from, Arithmetic to ); |
(4) | (since C++11) |
| float nexttoward( float from, long double to ); |
(5) | (since C++11) |
| double nexttoward( double from, long double to ); |
(6) | (since C++11) |
| long double nexttoward( long double from, long double to ); |
(7) | (since C++11) |
| double nexttoward( Integral from, long double to ); |
(8) | (since C++11) |
Returns the next representable value of from in the direction of to. If from equals to to, to is returned.
4) If any argument has integral type, it is cast to double. If any other argument is long double, then the return type is long double, otherwise it is double
[edit] Parameters
| from, to | - | floating point values |
[edit] Return value
the next representable value of from in the direction of to.
[edit] Example
| This section is incomplete Reason: no example |