operator< (<system_error>)

비교를 위해 전달 개체 개체 보다 작은지 여부를 테스트 합니다.

template<class _Enum> inline bool operator<(
    _Enum _Left,
    typename tr1::enable_if<is_error_code_enum<_Enum>::value,
    const error_code&>::type _Right);
template<class _Enum> inline bool operator<(
    typename tr1::enable_if<is_error_code_enum<_Enum>::value,
    const error_code&>::type _Left, _Enum _Right);
template<class _Enum> inline bool operator<(
    _Enum _Left,
    typename tr1::enable_if<is_error_condition_enum<_Enum>::value,
    const error_condition&>::type _Right);
template<class _Enum> inline bool operator<(
    typename tr1::enable_if<is_error_condition_enum<_Enum>::value,
    const error_condition&>::type _Left, _Enum _Right);

매개 변수

Parameter

설명

_Left

비교할 개체입니다.

_Right

비교할 개체입니다.

반환 값

true 에서 개체를 전달 하는 경우 _Left 에서 개체를 전달 하는 것 보다 작은 _Right. 그렇지 않으면 거짓.

설명

이 함수 순서 오류를 테스트합니다.

요구 사항

헤더: <system_error>

네임 스페이스: std

참고 항목

참조

<system_error>