error_condition::operator<

如果 error_condition 对象与用于比较,传递的 error_code 对象小于测试。

bool operator<(const error_condition& _Right) const;

参数

Parameter

说明

_Right

要比较的 error_condition 对象。

返回值

true,如果 error_condition 对象与用于比较传递的 error_condition 对象小于;否则,false

备注

成员运算符返回 category() < ;Right.category() || category() == _Right.category() &;AMP_amp; value < ;Right.value()。

要求

标头: <system_error>

命名空间: std

请参见

参考

error_condition Class