Skip to content

Latest commit

 

History

History
94 lines (72 loc) · 2.3 KB

isgreaterequal.md

File metadata and controls

94 lines (72 loc) · 2.3 KB

isgreaterequal

  • 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と等価の演算によって、xy以上であればtrue、そうでなければfalseを返す。

x >= yと違って、この関数はxyが順序付けされていない場合に、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

処理系