std::chrono::operator ==,!=,<,<=,>,>= (std::chrono::month_weekday_last)
提供: cppreference.com
<tbody>
</tbody>
constexpr bool operator==(const std::chrono::month_weekday_last& x, const std::chrono::month_weekday_last& y) noexcept; |
(C++20以上) | |
constexpr bool operator!=(const std::chrono::month_weekday_last& x, const std::chrono::month_weekday_last& y) noexcept; |
(C++20以上) | |
2つの month_weekday_last オブジェクト x および y を比較します。
戻り値
1)
x.month() == y.month() && x.weekday_last() == y.weekday_last()。2)
!(x == y)。