std::chrono::operator ==,!=,<,<=,>,>= (std::chrono::time_zone)
提供: cppreference.com
<tbody>
</tbody>
bool operator==(const std::chrono::time_zone& x, const std::chrono::time_zone& y) noexcept; |
(1) | (C++20以上) |
bool operator!=(const std::chrono::time_zone& x, const std::chrono::time_zone& y) noexcept; |
(2) | (C++20以上) |
bool operator< (const std::chrono::time_zone& x, const std::chrono::time_zone& y) noexcept; |
(3) | (C++20以上) |
bool operator> (const std::chrono::time_zone& x, const std::chrono::time_zone& y) noexcept; |
(4) | (C++20以上) |
bool operator<=(const std::chrono::time_zone& x, const std::chrono::time_zone& y) noexcept; |
(5) | (C++20以上) |
bool operator>=(const std::chrono::time_zone& x, const std::chrono::time_zone& y) noexcept; |
(6) | (C++20以上) |
2つの time_zone オブジェクト x と y を名前で比較します。
戻り値
1)
x.name() == y.name()。2)
x.name() != y.name()。3)
x.name() < y.name()。4)
x.name() > y.name()。5)
x.name() <= y.name()。6)
x.name() >= y.name()。