Namespaces
Variants

std::chrono:: operator== (std::chrono::weekday_indexed)

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