名前空間
変種
操作

std::islessgreater

提供: cppreference.com
< cpp‎ | numeric‎ | math

 
 
 
一般的な数学関数
関数
基本的な演算
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
指数関数
(C++11)
(C++11)
(C++11)
(C++11)
冪関数
(C++11)
(C++11)
三角関数と双曲線関数
(C++11)
(C++11)
(C++11)
誤差関数とガンマ関数
(C++11)
(C++11)
(C++11)
(C++11)
最も近い整数
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
浮動小数点操作関数
(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)
分類および比較
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
islessgreater
(C++11)
マクロ定数
(C++11)(C++11)(C++11)(C++11)(C++11)
 
ヘッダ <cmath> で定義
bool islessgreater( float x, float y );
(C++11およびそれ以降)
bool islessgreater( double x, double y );
(C++11およびそれ以降)
bool islessgreater( long double x, long double y );
(C++11およびそれ以降)
浮動小数点数xかどうかを判断するには、浮動小数点例外を設定することなく、より小さいまたは浮動小数点数yよりも大きいです.
Original:
Determines if the floating point number x is less than or greater than 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.

目次

[編集] パラメータ

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 || x > yもし、そうでなければfalse
Original:
true if x < y || 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.

[編集] ノート

組み込みの引数のいずれかまたは両方がNaNの場合operator<operator>浮動小数点数のためのFE_INVALIDを上げるかもしれません。この関数は、式x < y || x > yの "静かな"バージョンです.
Original:
The built-in operator< and 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 the expression x < y || 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)
第1引数の浮動小数点が第2引数より小さいかどうか調べます
(関数) [edit]
(C++11)
第1引数の浮動小数点が第2引数より大きいかどうか調べます
(関数) [edit]