Aracılığıyla paylaş


Operatör < İşleç (stl)

Bir olup olmadığını belirleyen süre veya time_point nesnesi baþka birinden küçük olan duration veya time_point nesnesi.

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);

Parametreler

  • Left
    The left duration or time_point object.

  • Right
    Sağ duration veya time_point nesnesi.

Dönüş Değeri

İlk işlevini verir true , aralığın uzunluğunu Left aralığı uzunluğundan daha az Right. Aksi takdirde işlevini verir false.

İkinci işlev verir true , Left önündeki Right. Aksi takdirde işlevini verir false.

Ayrıca bkz.

Başvuru

<chrono>