std::chrono:: operator== (std::chrono::weekday_indexed)
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Member functions | ||||
| Nonmember functions | ||||
|
operator==
|
||||
| Helper classes | ||||
|
헤더에 정의됨
<chrono>
|
||
|
constexpr
bool
operator
==
(
const
std::
chrono
::
weekday_indexed
&
x,
const std:: chrono :: weekday_indexed & y ) noexcept ; |
(C++20부터) | |
두
weekday_indexed
x
와
y
를 비교합니다.
!=
연산자는
합성된
operator==
로부터 생성됩니다.
반환값
x. weekday ( ) == y. weekday ( ) && x. index ( ) == y. index ( )
예제
#include <chrono> int main() { constexpr std::chrono::weekday_indexed wdi1{std::chrono::Wednesday[2]}; constexpr std::chrono::weekday_indexed wdi2{std::chrono::weekday(3), 2}; static_assert(wdi1 == wdi2); }