Namespaces
Variants

std::chrono:: operator== (std::chrono::weekday_last)

From cppreference.net
헤더에 정의됨 <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