◐ Shell
clean mode source ↗

std::isfinite - cppreference.com

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.

Click here for the English version of this page

<metanoindex/>

<tbody> </tbody>

Elemento definito nell'header

<cmath>

bool isfinite( float arg );

(dal C++11)

bool isfinite( double arg );

(dal C++11)

bool isfinite( long double arg );

(dal C++11)

Determina se il dato floating arg numero di punto ha un valore finito vale a dire che è normale, subnormale o nullo, ma non infinito o NAN.

Original:

Determines if the given floating point number arg has finite value i.e. it is normal, subnormal or zero, but not infinite or NAN.

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parametri

arg -

valore in virgola mobile

Original:

floating point value

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Valore di ritorno

Valore true se arg ha un valore finito, false altrimenti

Original:

true value if arg has finite value, false otherwise

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Vedi anche

categorizza il valore dato in virgola mobile

Original:

categorizes the given floating point value

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(funzione) [modifica]

(C++11)

controlla se il numero dato è infinito

Original:

checks if the given number is infinite

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(funzione) [modifica]

(C++11)

controlla se il numero dato è NaN

Original:

checks if the given number is NaN

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(funzione) [modifica]

(C++11)

controlla se il numero dato è normale

Original:

checks if the given number is normal

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(funzione) [modifica]