Partager via


operator>= (pair) (STL/CLR)

Couplez la comparaison supérieure ou égale.

template<typename Value1,
    typename Value2>
    bool operator>=(pair<Value1, Value2>% left,
        pair<Value1, Value2>% right);

Paramètres

  • left
    Paires gauche à comparer.

  • right
    Bonnes paires à comparer.

Notes

La fonction d'opérateur retourne !(left<right).Vous l'utilisez pour tester si left n'est pas repris avant right lorsque les deux paires sont élément par rapport par l'élément.

Exemple

// cliext_pair_operator_ge.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); 
    } 
 
  

Configuration requise

en-tête :<cliext/utilitaire>

Cliext del'espace de noms :

Voir aussi

Référence

pair (STL/CLR)

operator== (pair) (STL/CLR)

operator!= (pair) (STL/CLR)

operator< (pair) (STL/CLR)

operator> (pair) (STL/CLR)

operator<= (pair) (STL/CLR)