std::islessequal
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
Defined in header <cmath>
|
||
bool islessequal( float x, float y ); |
(C++11およびそれ以降) | |
bool islessequal( double x, double y ); |
(C++11およびそれ以降) | |
bool islessequal( long double x, long double y ); |
(C++11およびそれ以降) | |
浮動小数点数
x
浮動小数点演算の例外を設定することなく、より小さいまたは浮動小数点数y
に等しいかどうかを判断します.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.
You can help to correct and verify the translation. Click here for instructions.
目次 |
[編集] パラメータ
x | - | 浮動小数点値
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 | - | 浮動小数点値
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. |
[編集] 値を返します
truex <= yもし、そうでなければfalse
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.
You can help to correct and verify the translation. Click here for instructions.
[編集] ノート
引数のいずれかまたは両方がNaNの場合は、浮動小数点数のためのビルトインoperator<=はFE_INVALIDを上げることができる。この関数は、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.
You can help to correct and verify the translation. Click here for instructions.
[編集] 参照
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. (クラステンプレート) | |
(C++11) |
最初の浮動小数点引数かどうかをチェックしますが2番目の値より大きいか等しい 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. (関数) |