Sdílet prostřednictvím


operator< (<system_error>)

Zkouší, zda je objekt menší než objekt předaný k porovnání.

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

Parametry

Parametr

Popis

_Left

Objekt, který chcete porovnat.

_Right

Objekt, který chcete porovnat.

Vrácená hodnota

pravda, pokud je objekt předaný v _Left menší než objekt předaný v _Right; jinak nepravda.

Poznámky

Tato funkce testuje pořadí chyb.

Požadavky

Hlavička: <system_error>

Obor názvů: std

Viz také

Referenční dokumentace

<system_error>