次の方法で共有


operator< 演算子 (STL)

[期間] または time_point の 1 種類のオブジェクトが duration または time_point の別のオブジェクトより小さいかどうかを判断します。

template<class Rep1, class Period1, class Rep2, class Period2>
   constexpr bool operator< (
      const duration<Rep1, Period1>& Left,
      const duration<Rep2, Period2>& Right);
template<class Clock, class Duration1, class Duration2>
   bool operator< (
      const time_point<Clock, Duration1>& Left,
      const time_point<Clock, Duration2>& Right);

パラメーター

  • Left
    time_point の左 duration またはオブジェクト。

  • Right
    time_point の右側の duration またはオブジェクト。

戻り値

最初の関数は Left の間隔である場合 Rightの間隔未満 true を返します。それ以外の場合、関数は falseを返します。

2 番目の関数は、Left が Rightを指定すると true を返します。それ以外の場合、関数は falseを返します。

参照

関連項目

<chrono>