std::chrono:: operator==,<=> (std::chrono::day)
From cppreference.net
C++
Date and time library
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::chrono::day
| Member functions | ||||
| Nonmember functions | ||||
|
operator==
operator<=>
|
||||
| Helper classes | ||||
|
(C++26)
|
|
ヘッダーで定義
<chrono>
|
||
|
constexpr
bool
operator
==
(
const
std::
chrono
::
day
&
x,
const std:: chrono :: day & y ) noexcept ; |
(1) | (C++20以降) |
|
constexpr
std::
strong_ordering
operator
<=>
(
const
std::
chrono
::
day
&
x,
const std:: chrono :: day & y ) noexcept ; |
(2) | (C++20以降) |
2つの std::chrono::day x と y を比較します。
<
、
<=
、
>
、
>=
、および
!=
演算子は、
それぞれ
operator
<=>
と
operator
==
から合成されます。
戻り値
1)
unsigned
(
x
)
==
unsigned
(
y
)
2)
unsigned
(
x
)
<=>
unsigned
(
y
)
例
このコードを実行
#include <chrono> #include <iostream> int main() { constexpr std::chrono::day x{13}, y{31}; static_assert(x != y); if constexpr (constexpr auto res = x <=> y; res < 0) std::cout << "x is less than y\n"; else if constexpr (res > 0) std::cout << "x is greater than y\n"; else std::cout << "x and y are equal\n"; using namespace std::literals::chrono_literals; static_assert ( (6d < 9d) && (6d == 6d) && (6d <= 9d) && (9d > 6d) && (9d != 6d) && (9d >= 6d) ); }
出力:
x is less than y