nextafter, nexttoward
Da cppreference.com.
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'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 ); |
||
Restituisce il valore del successivo rappresentabile
from
in direzione di to
. Se from
uguale a to
, to
viene restituito.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.
Indice |
[modifica] Parametri
from, to | - | valori in virgola mobile
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. |
[modifica] Valore di ritorno
Il successivo valore di
from
rappresentabile in direzione 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.
[modifica] Esempio
This section is incomplete Reason: no example |
[modifica] Vedi anche
C++ documentation for nextafter
|