error_condition::operator==

error_condition のオブジェクトの等価性のテスト。

bool operator==(const error_condition& _Right) const;

パラメーター

パラメーター

説明

_Right

等価性をテストする ojbect。

戻り値

オブジェクトが等しいtrue ; オブジェクトがではない false

解説

このメンバー演算子は、category() == _Right.category() && value == _Right.value() を返します。

必要条件

ヘッダー: <system_error>

名前空間: std

参照

関連項目

error_condition Class