ReverseBidirectionalIterator<TValue>.Equality Opérateur
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Détermine si deux itérateurs correspondent au même objet.
Surcharges
Equality(IInputIterator<TValue>) |
Détermine si l'objet IInputIterator<TValue> donné correspond à l'objet ReverseBidirectionalIterator<TValue> actuel. |
Equality(ReverseBidirectionalIterator<TValue>) |
Détermine si l'objet ReverseBidirectionalIterator<TValue> donné correspond à l'objet ReverseBidirectionalIterator<TValue> actuel. |
Equality(IInputIterator<TValue>)
Détermine si l'objet IInputIterator<TValue> donné correspond à l'objet ReverseBidirectionalIterator<TValue> actuel.
public:
bool operator ==(Microsoft::VisualC::StlClr::Generic::IInputIterator<TValue> ^ _Right);
public bool operator == (Microsoft.VisualC.StlClr.Generic.IInputIterator<TValue> _Right);
member this.( = ) : Microsoft.VisualC.StlClr.Generic.IInputIterator<'Value> -> bool
Public Operator == (_Right As IInputIterator(Of TValue)) As Boolean
Paramètres
- _Right
- IInputIterator<TValue>
Objet IInputIterator<TValue> à comparer à l’objet ReverseBidirectionalIterator<TValue> actuel.
Retours
true
si les deux itérateurs correspondent au même objet ; sinon, false
.
Remarques
La méthode équivalente pour cet opérateur est Object.Equals(Object)
S’applique à
Equality(ReverseBidirectionalIterator<TValue>)
Détermine si l'objet ReverseBidirectionalIterator<TValue> donné correspond à l'objet ReverseBidirectionalIterator<TValue> actuel.
public:
bool operator ==(Microsoft::VisualC::StlClr::Generic::ReverseBidirectionalIterator<TValue> ^ _Right);
public bool operator == (Microsoft.VisualC.StlClr.Generic.ReverseBidirectionalIterator<TValue> _Right);
member this.( = ) : Microsoft.VisualC.StlClr.Generic.ReverseBidirectionalIterator<'Value> -> bool
Public Operator == (_Right As ReverseBidirectionalIterator(Of TValue)) As Boolean
Paramètres
Objet ReverseBidirectionalIterator<TValue> à comparer à l’objet ReverseBidirectionalIterator<TValue> actuel.
Retours
true
si les deux itérateurs correspondent au même objet ; sinon, false
.