- cmath[meta header]
- std[meta namespace]
- function[meta id-type]
- cpp11[meta cpp]
namespace std {
bool isgreaterequal(double x, double y);
bool isgreaterequal(float x, float y);
bool isgreaterequal(long double x, long double y);
bool isgreaterequal(Integral x, Integral y);
}
- Integral[italic]
浮動小数点数について、左辺が右辺以上かを判定する。
x >= y
と等価の演算によって、x
がy
以上であればtrue
、そうでなければfalse
を返す。
x >= y
と違って、この関数はx
とy
が順序付けされていない場合に、FE_INVALID
(無効演算浮動小数点例外)は発生しない。
- C標準ライブラリでは本関数は関数マクロとして定義されるが、C++標準ライブラリでは関数として定義される。
- C標準ライブラリでは本関数は
int
型を戻り値とするが、C++標準ライブラリではbool
型を戻り値とする。
#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);
}
- std::isgreaterequal[color ff0000]
- infinity()[link /reference/limits/numeric_limits/infinity.md]
- quiet_NaN()[link /reference/limits/numeric_limits/quiet_nan.md]
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++: ??