Namespaces
Variants

std::chrono:: operator== (std::chrono::month_weekday)

From cppreference.net
헤더에 정의됨 <chrono>
constexpr bool operator == ( const std:: chrono :: month_weekday & x,
const std:: chrono :: month_weekday & y ) noexcept ;
(C++20 이후)

month_weekday x y 를 비교합니다.

!= 연산자는 합성된 operator== 로부터 생성됩니다.

반환값

x. month ( ) == y. month ( ) && x. weekday_indexed ( ) == y. weekday_indexed ( )

예제

#include <chrono>
int main()
{
    constexpr auto mwdi1{std::chrono::March/std::chrono::Friday[1]};
    constexpr auto mwdi2
    {
        std::chrono::month_weekday
        {
            std::chrono::month(3), std::chrono::weekday(5)[1]
        }
    };
    static_assert(mwdi1 == mwdi2);
}