error_code::operator <

경우 테스트는 error_code 개체 보다는 error_code 개체가 전달에 대 한 비교.

bool operator<(const error_code& _Right) const;

매개 변수

Parameter

설명

_Right

비교할 error_code 개체입니다.

반환 값

true 경우는 error_code 개체 보다는 error_code 개체 전달에 대 한 비교. 그렇지 않으면 거짓.

설명

멤버 연산자를 반환 합니다. category() < _Right.category() || category() == _Right.category() && value < _Right.value().

요구 사항

헤더: <system_error>

네임 스페이스: std

참고 항목

참조

error_code Class