operator== (<system_error>)

연산자의 왼쪽에서 개체가 개체 오른쪽에 있으면 테스트 합니다.

bool operator==(const error_code& _Left, const error_condition& _Right);
bool operator==(const error_condition& _Left, const error_code& _Right);

매개 변수

Parameter

설명

_Left

같은지 테스트할 개체입니다.

_Right

같은지 테스트할 개체입니다.

반환 값

true 이면 개체가 같으면. false 이면 개체는 동일 하지 않은 경우.

설명

이 함수를 반환 합니다. _Left.category() == _Right.category() && _Left.value() == _Right.value().

요구 사항

헤더: <system_error>

네임 스페이스: std

참고 항목

참조

<system_error>