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

From cppreference.com
< cpp‎ | chrono‎ | leap
 
 
 
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::leap
Member functions
Nonmember functions
operator==operator!=operator<operator<=operator>operator>=
 
constexpr bool operator==(const leap& x, const leap& y) noexcept;
(since C++20)
constexpr bool operator!=(const leap& x, const leap& y) noexcept;
(since C++20)
constexpr bool operator< (const leap& x, const leap& y) noexcept;
(since C++20)
constexpr bool operator> (const leap& x, const leap& y) noexcept;
(since C++20)
constexpr bool operator<=(const leap& x, const leap& y) noexcept;
(since C++20)
constexpr bool operator>=(const leap& x, const leap& y) noexcept;
(since C++20)
template <class Duration> constexpr bool operator==(const leap&               x, const sys_time<Duration>& y) noexcept;
(since C++20)
template <class Duration> constexpr bool operator==(const sys_time<Duration>& x, const leap&               y) noexcept;
(since C++20)
template <class Duration> constexpr bool operator!=(const leap&               x, const sys_time<Duration>& y) noexcept;
(since C++20)
template <class Duration> constexpr bool operator!=(const sys_time<Duration>& x, const leap&               y) noexcept;
(since C++20)
template <class Duration> constexpr bool operator< (const leap&               x, const sys_time<Duration>& y) noexcept;
(since C++20)
template <class Duration> constexpr bool operator< (const sys_time<Duration>& x, const leap&               y) noexcept;
(since C++20)
template <class Duration> constexpr bool operator> (const leap&               x, const sys_time<Duration>& y) noexcept;
(since C++20)
template <class Duration> constexpr bool operator> (const sys_time<Duration>& x, const leap&               y) noexcept;
(since C++20)
template <class Duration> constexpr bool operator<=(const leap&               x, const sys_time<Duration>& y) noexcept;
(since C++20)
template <class Duration> constexpr bool operator<=(const sys_time<Duration>& x, const leap&               y) noexcept;
(since C++20)
template <class Duration> constexpr bool operator>=(const leap&               x, const sys_time<Duration>& y) noexcept;
(since C++20)
template <class Duration> constexpr bool operator>=(const sys_time<Duration>& x, const leap&               y) noexcept;
(since C++20)