constexpr bool operator==(const std::chrono::month& x, const std::chrono::month& y) noexcept; | (1) | (since C++20) |
constexpr bool operator!=(const std::chrono::month& x, const std::chrono::month& y) noexcept; | (2) | (since C++20) |
constexpr bool operator< (const std::chrono::month& x, const std::chrono::month& y) noexcept; | (3) | (since C++20) |
constexpr bool operator<=(const std::chrono::month& x, const std::chrono::month& y) noexcept; | (4) | (since C++20) |
constexpr bool operator> (const std::chrono::month& x, const std::chrono::month& y) noexcept; | (5) | (since C++20) |
constexpr bool operator>=(const std::chrono::month& x, const std::chrono::month& y) noexcept; | (6) | (since C++20) |
Compare the two std::chrono::month
x
and y
.
unsigned(x) == unsigned(y)
unsigned(x) != unsigned(y)
unsigned(x) < unsigned(y)
unsigned(x) <= unsigned(y)
unsigned(x) > unsigned(y)
unsigned(x) >= unsigned(y)
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/chrono/month/operator_cmp