Partager via


opérateur d'operator< (STL)

Détermine si un objet de durée ou de time_point est inférieure un autre objet d' duration ou d' 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);

Paramètres

  • Left
    duration ou l'objet gauche d' time_point .

  • Right
    Bon duration objet ou d' time_point .

Valeur de retour

La première fonction retourne true si la longueur d'intervalle d' Left est inférieure à la longueur d'intervalle d' Right.Sinon, la fonction retourne false.

La deuxième fonction retourne true si Left précède Right.Sinon, la fonction retourne false.

Voir aussi

Référence

<chrono>