Sdílet prostřednictvím


operator< (<system_error>)

Zkoušky, pokud je objekt menší než objekt předaný pro porovnání.

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);

Parametry

Parametr

Description

_Left

Objekt, který chcete porovnat.

_Right

Objekt, který chcete porovnat.

Vrácená hodnota

True Pokud předaný objekt _Left je menší než předaný objekt _Right; Jinak false.

Poznámky

Ověř chyba objednávky.

Požadavky

Záhlaví: <system_error>

Obor názvů: std

Viz také

Referenční dokumentace

<system_error>