namespace std {
bool isgreaterequal(float x, float y); // (1) C++11からC++20まで
bool isgreaterequal(double x, double y); // (2) C++11からC++20まで
bool isgreaterequal(long double x, long double y); // (3) C++11からC++20まで
constexpr bool
isgreaterequal(floating-point-type x,
floating-point-type y); // (4) C++23
bool
isgreaterequal(Integral x, Integral y); // (5) C++11
constexpr bool
isgreaterequal(Integral x, Integral y); // (5) C++23
}
概要
浮動小数点数について、左辺が右辺以上かを判定する。
- (1) :
float
に対するオーバーロード - (2) :
double
に対するオーバーロード - (3) :
long double
に対するオーバーロード - (4) : 浮動小数点数型に対するオーバーロード
- (5) : 整数型に対するオーバーロード (
double
にキャストして計算される)
戻り値
x >= y
と等価の演算によって、x
がy
以上であればtrue
、そうでなければfalse
を返す。
x >= y
と違って、この関数はx
とy
が順序付けされていない場合に、FE_INVALID
(無効演算浮動小数点例外)は発生しない。
備考
- C標準ライブラリでは本関数は関数マクロとして定義されるが、C++標準ライブラリでは関数として定義される
- C標準ライブラリでは本関数は
int
型を戻り値とするが、C++標準ライブラリではbool
型を戻り値とする - C++23では、(1)、(2)、(3)が(4)に統合され、拡張浮動小数点数型を含む浮動小数点数型へのオーバーロードとして定義された
例
#include <iostream>
#include <cmath>
#include <limits>
void test(double x, double y)
{
std::cout << std::boolalpha;
std::cout << "isgreaterequal(" << x << ", " << y << ") = " << std::isgreaterequal(x, y) << std::endl;
}
int main()
{
test(2.0, 1.0);
test(1.0, 2.0);
test(2.0, 2.0);
test(0.0, -0.0);
const double inf = std::numeric_limits<double>::infinity();
const double nan = std::numeric_limits<double>::quiet_NaN();
test(inf, 1.0);
test(1.0, inf);
test(inf, inf);
test(nan, 1.0);
test(1.0, nan);
test(nan, nan);
}
出力例
isgreaterequal(2, 1) = true
isgreaterequal(1, 2) = false
isgreaterequal(2, 2) = true
isgreaterequal(0, -0) = true
isgreaterequal(inf, 1) = true
isgreaterequal(1, inf) = false
isgreaterequal(inf, inf) = true
isgreaterequal(nan, 1) = false
isgreaterequal(1, nan) = false
isgreaterequal(nan, nan) = false
バージョン
言語
- C++11
処理系
- Clang: 3.0 ✅
- GCC: 4.3 ✅
- ICC: ??
- Visual C++: ??
参照
- P0533R9 constexpr for
<cmath>
and<cstdlib>
- C++23での、一部関数の
constexpr
対応
- C++23での、一部関数の
- P1467R9 Extended floating-point types and standard names