std::chrono:: operator==,<=> (std::chrono::year_month)
From cppreference.net
<
cpp
|
chrono
|
year month
C++
Date and time library
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::chrono::year_month
| Member functions | ||||
| Nonmember functions | ||||
|
operator==
operator<=>
|
||||
| Helper classes | ||||
|
(C++26)
|
|
ヘッダー
<chrono>
で定義
|
||
|
constexpr
bool
operator
==
(
const
std::
chrono
::
year_month
&
x,
const std:: chrono :: year_month & y ) noexcept ; |
(1) | (C++20以降) |
|
constexpr
std::
strong_ordering
operator
<=>
(
const
std::
chrono
::
year_month
&
x,
const std:: chrono :: year_month & y ) noexcept ; |
(2) | (C++20以降) |
2つの
year_month
値
x
と
y
を比較します。
<
、
<=
、
>
、
>=
、および
!=
演算子は、
それぞれ
operator
<=>
と
operator
==
から合成されます。
戻り値
1)
x.
year
(
)
==
y.
year
(
)
&&
x.
month
(
)
==
y.
month
(
)
2)
x.
year
(
)
<=>
y.
year
(
)
!
=
0
?
x.
year
(
)
<=>
y.
year
(
)
:
x.
month
(
)
<=>
y.
month
(
)
例
このコードを実行
#include <chrono> #include <iostream> int main() { using namespace std::chrono; constexpr year_month ym1{year(2021), month(7)}; constexpr year_month ym2{year(2021)/7}; static_assert(ym1 == ym2); std::cout << ym1 << '\n'; static_assert((2020y/1 < 2020y/2) && (2020y/2 == 2020y/2) && (2020y/3 <= 2021y/3) && (2023y/1 > 2020y/2) && (3020y/2 != 2020y/2) && (2020y/3 >= 2020y/3)); }
出力:
2021/Jul