Comparison operators
| 138 | |
| 139 | // Comparison operators |
| 140 | constexpr bool operator<=(const time_point& rhs) const FL_NOEXCEPT { |
| 141 | return mDuration.count() <= rhs.mDuration.count(); |
| 142 | } |
| 143 | constexpr bool operator<(const time_point& rhs) const FL_NOEXCEPT { |
| 144 | return mDuration.count() < rhs.mDuration.count(); |
| 145 | } |