std::chrono:: operator== (std::chrono::weekday_last)
From cppreference.net
<
cpp
|
chrono
|
weekday last
C++
Date and time library
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
std::chrono::weekday_last
| Member functions | ||||
| Nonmember functions | ||||
|
operator==
|
||||
| Helper classes | ||||
|
(C++26)
|
|
헤더에 정의됨
<chrono>
|
||
|
constexpr
bool
operator
==
(
const
std::
chrono
::
weekday_last
&
x,
const std:: chrono :: weekday_last & y ) noexcept ; |
(C++20부터) | |
두
weekday_last
값
x
와
y
를 비교합니다.
!=
연산자는
합성된
operator==
로부터 생성됩니다.
반환값
x. weekday ( ) == y. weekday ( )
예제
이 코드 실행
#include <chrono> #include <iostream> int main() { constexpr auto wdl1{std::chrono::Tuesday[std::chrono::last]}; constexpr std::chrono::weekday_last wdl2{std::chrono::weekday(2)}; std::cout << std::boolalpha << (wdl1 == wdl2) << ' ' << (wdl1 == std::chrono::Wednesday[std::chrono::last]) << '\n'; }
출력:
true false