operator!= (<system_error>)
Teste si l'objet situé à gauche de l'opérateur n'est pas égal à l'objet côté droit.
bool operator!=(const error_code& _Left, const error_condition& _Right);
bool operator!=(const error_condition& _Left, const error_code& _Right);
Paramètres
Paramètre |
Description |
---|---|
_Left |
l'objet à tester pour l'inégalité. |
_Right |
l'objet à tester pour l'inégalité. |
Valeur de retour
true si l'objet passé dans _Left n'est pas égal à l'objet passé dans _Right; sinon false.
Notes
Cette fonction retourne !(_Left == _Right).