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 std::chrono::leap& x,
                           const std::chrono::leap& y ) noexcept;
(1) (since C++20)
constexpr std::strong_ordering operator<=>( const std::chrono::leap& x,
                                            const std::chrono::leap& y ) noexcept;
(2) (since C++20)
template< class Duration >

constexpr bool operator==( const std::chrono::leap& x,

                           const std::chrono::sys_time<Duration>& y ) noexcept;
(3) (since C++20)
template< class Duration >

constexpr bool operator< ( const std::chrono::leap& x,

                           const std::chrono::sys_time<Duration>& y ) noexcept;
(4) (since C++20)
template< class Duration >

constexpr bool operator< ( const std::chrono::sys_time<Duration>& x,

                           const std::chrono::leap& y ) noexcept;
(5) (since C++20)
template< class Duration >

constexpr bool operator> ( const std::chrono::leap& x,

                           const std::chrono::sys_time<Duration>& y ) noexcept;
(6) (since C++20)
template< class Duration >

constexpr bool operator> ( const std::chrono::sys_time<Duration>& x,

                           const std::chrono::leap& y ) noexcept;
(7) (since C++20)
template< class Duration >

constexpr bool operator<=( const std::chrono::leap& x,

                           const std::chrono::sys_time<Duration>& y ) noexcept;
(8) (since C++20)
template< class Duration >

constexpr bool operator<=( const std::chrono::sys_time<Duration>& x,

                           const std::chrono::leap& y ) noexcept;
(9) (since C++20)
template< class Duration >

constexpr bool operator>=( const std::chrono::leap& x,

                           const std::chrono::sys_time<Duration>& y ) noexcept;
(10) (since C++20)
template< class Duration >

constexpr bool operator>=( const std::chrono::sys_time<Duration>& x,

                           const std::chrono::leap& y ) noexcept;
(11) (since C++20)
template< std::three_way_comparable_with<std::chrono::seconds> Duration >

constexpr auto operator<=>( const std::chrono::leap& x,

                            const std::chrono::sys_time<Duration>& y ) noexcept;
(12) (since C++20)

Compares the date and time represented by the objects x and y.

Return type of (12) is deduced from x.date() <=> y, and hence the three-way comparison result type of std::chrono::seconds and Duration.

Return value

1) x.date() == y.date()
2) x.date() <=> y.date()
3) x.date() == y
4) x.date() < y
5) x < y.date()
6) x.date() > y
7) x > y.date()
8) x.date() <= y
9) x <= y.date()
10) x.date() >= y
11) x >= y.date()
12) x.date() <=> y