operador = = (STL/CLR) (par)
Par igual comparação.
template<typename Value1,
typename Value2>
bool operator==(pair<Value1, Value2>% left,
pair<Value1, Value2>% right);
Parâmetros
esquerda
Par esquerdo para comparar.direito
Par correto para comparar.
Comentários
The operator function returns left.first == right.first && left.second == right.second.Use-o para testar se left é ordenada igual a right quando dois pares são comparado elemento por elemento.
Exemplo
// cliext_pair_operator_eq.cpp
// compile with: /clr
#include <cliext/utility>
int main()
{
cliext::pair<wchar_t, int> c1(L'x', 3);
System::Console::WriteLine("[{0}, {1}]", c1.first, c1.second);
cliext::pair<wchar_t, int> c2(L'x', 4);
System::Console::WriteLine("[{0}, {1}]", c2.first, c2.second);
System::Console::WriteLine("[x 3] == [x 3] is {0}",
c1 == c1);
System::Console::WriteLine("[x 3] == [x 4] is {0}",
c1 == c2);
return (0);
}
Requisitos
Cabeçalho: < cliext/utilitário >
Namespace: cliext