std::chrono:: operator==,<=> (std::chrono::month_day_last)
From cppreference.com
<
cpp
|
chrono
|
month day last
C++
Utilities library
|
|
Date and time utilities
Time point | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Duration | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Clocks | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Time of day | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Calendar | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Time zone | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
chrono
I/O
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
(C++20)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
C-style date and time |
std::chrono::month_day_last
Member functions | ||||
Nonmember functions | ||||
operator==
operator<=>
|
||||
Helper classes | ||||
Defined in header
<chrono>
|
||
constexpr
bool
operator
==
(
const
std::
chrono
::
month_day_last
&
x,
const std:: chrono :: month_day_last & y ) noexcept ; |
(1) | (since C++20) |
constexpr
std::
strong_ordering
operator
<=>
(
const
std::
chrono
::
month_day_last
&
x,
const std:: chrono :: month_day_last & y ) noexcept ; |
(2) | (since C++20) |
Compares the two
month_day_last
values
x
and
y
.
The
<
,
<=
,
>
,
>=
, and
!=
operators are
synthesized
from
operator
<=>
and
operator
==
respectively.
Return value
1)
x.
month
(
)
==
y.
month
(
)
2)
x.
month
(
)
<=>
y.
month
(
)
Example
Run this code
#include <chrono> #include <iostream> int main() { constexpr auto mdl1{std::chrono::February/std::chrono::last}; constexpr std::chrono::month_day_last mdl2{std::chrono::month(2)}; std::cout << std::boolalpha << (mdl1 == mdl2) << '\n'; static_assert(mdl1 <= mdl2); }
Output:
true
Retrieved from "
https://en.cppreference.com/mwiki/index.php?title=cpp/chrono/month_day_last/operator_cmp&oldid=157105
"