◐ Shell
clean mode source ↗

std::islessequal - 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 islessequal( float x, float y );

(dal C++11)

bool islessequal( double x, double y );

(dal C++11)

bool islessequal( long double x, long double y );

(dal C++11)

Determina se il galleggiante x numero del punto è minore o uguale alla virgola mobile y numero, senza stabilire eccezioni a virgola mobile.

Original:

Determines if the floating point number x is less than or equal to the floating-point number y, without setting floating-point exceptions.

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

Parametri

x -

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.

y -

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

true se x <= y, false altrimenti

Original:

true if x <= y, false otherwise

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

Note

Il built-in operator<= per numeri in virgola mobile possono sollevare FE_INVALID se uno o entrambi gli argomenti è NaN. Questa funzione è una versione "tranquilla" di operator<=.

Original:

The built-in operator<= for floating-point numbers may raise FE_INVALID if one or both of the arguments is NaN. This function is a "quiet" version of operator<=.

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

Vedi anche

oggetto funzione attuazione x <= y

Original:

function object implementing x <= y

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


(classe template) [modifica]

controlla se il primo a virgola mobile argomento è maggiore o uguale al secondo

Original:

checks if the first floating-point argument is greater or equal than the second

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


(funzione) [modifica]