nextafter, nexttoward
Aus cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
definiert in Header <math.h>
|
||
float nextafterf( float from, float to ); |
||
double nextafter( double from, double to ); |
||
long double nextafterl( long double from, long double to ); |
||
float nexttowardf( float from, long double to ); |
||
double nexttoward( double from, long double to ); |
||
long double nexttowardl( long double from, long double to ); |
||
Gibt den nächsten Wert der darstellbaren
from
in Richtung to
. Wenn from
um to
entspricht, wird to
zurückgegeben .Original:
Returns the next representable value of
from
in the direction of to
. If from
equals to to
, to
is returned.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Inhaltsverzeichnis |
[Bearbeiten] Parameter
from, to | - | Fließkommazahlen
Original: floating point values The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[Bearbeiten] Rückgabewert
Der nächste darstellbare Wert
from
in Richtung to
.Original:
The next representable value of
from
in the direction of to
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[Bearbeiten] Beispiel
This section is incomplete Reason: no example |
[Bearbeiten] Siehe auch
C++ documentation for nextafter
|