类模板
<ratio>

std::ratio_less_equal

template <class R1, class R2> ratio_less_equal;
比较 ratio 的相等或小于关系
此类型继承自适当的 integral_constant 类型(true_typefalse_type),用于指示 R1 是否小于或等于 R2
结果类型与以下定义相同:ratio_less_equal定义为
1
2
template <class R1, class R2>
struct ratio_less_equal : integral_constant < bool, !ratio_less<R2,R1>::value > {};

模板参数

R1,R2
要比较的 ratio 类型。

成员常量

继承自 integral_constant
成员常量定义
truefalse

成员类型

继承自 integral_constant
成员类型定义
value_typebool
类型true_type 或 false_type

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// ratio_less_equal example
#include <iostream>
#include <ratio>

int main ()
{
  typedef std::ratio<1,3> one_third;
  typedef std::ratio<1,2> one_half;

  std::cout << "1/3 <= 1/2 ? " << std::boolalpha;
  std::cout << std::ratio_less_equal<one_third,one_half>::value << std::endl;

  return 0;
}

输出
1/3 <= 1/2 ? true


另见