• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

    最終更新日時(UTC):
    が更新

    履歴 編集

    class template
    <ratio>

    std::ratio_less_equal

    namespace std {
      template <class R1, class R2>
      struct ratio_less_equal;
    
      template <class R1, class R2>
      inline constexpr bool ratio_less_equal_v
        = ratio_less_equal<R1, R2>::value;     // C++17
    }
    

    概要

    ratio_less_equalは、2つのratioにおいて、左辺が右辺以下かを判定するクラステンプレートである。

    効果

    ratio_less_equalは、ratio_less<R2, R1>::value == falseであればtrue_typeから派生し、そうでなければfalse_typeから派生する。

    #include <ratio>
    
    int main()
    {
      using r1 = std::ratio<2, 5>;
      using r2 = std::ratio<3, 5>;
    
      static_assert(std::ratio_less_equal<r1, r2>::value == true, "r1 <= r2");
    }
    

    出力

    バージョン

    言語

    • C++11

    処理系

    参照