std::chrono::operator ==,!=,<,<=,>,>= (std::chrono::month_day_last)

From cppreference.com
 
 
 
Date and time utilities
(C++11)
(C++11)
Clocks
(C++20)
                                                  
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Calendars
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
Time zones
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
(C++20)
C-style date and time
 
std::chrono::month_day_last
Member functions
Nonmember functions
operator==operator!=operator<operator<=operator>operator>=
 
constexpr bool operator==(const std::chrono::month_day_last& x,
                          const std::chrono::month_day_last& y) noexcept;
(since C++20)
constexpr bool operator!=(const std::chrono::month_day_last& x,
                          const std::chrono::month_day_last& y) noexcept;
(since C++20)
constexpr bool operator< (const std::chrono::month_day_last& x,
                          const std::chrono::month_day_last& y) noexcept;
(since C++20)
constexpr bool operator> (const std::chrono::month_day_last& x,
                          const std::chrono::month_day_last& y) noexcept;
(since C++20)
constexpr bool operator<=(const std::chrono::month_day_last& x,
                          const std::chrono::month_day_last& y) noexcept;
(since C++20)
constexpr bool operator>=(const std::chrono::month_day_last& x,
                          const std::chrono::month_day_last& y) noexcept;
(since C++20)

Compares the two month_day_last objects x and y.

Return value

1) x.month() == y.month()
2) x.month() != y.month()
3) x.month() < y.month()
4) x.month() > y.month()
5) x.month() <= y.month()
6) x.month() >= y.month()