Partager via


hash_multiset : : value_compare (STL/CLR)

Le délégué de classement pour deux valeurs d'élements.

    Microsoft::VisualC::StlClr::BinaryDelegate<generic_value, generic_value, bool>
        value_compare;

Notes

Ce type est un synonyme de délégué qui détermine le classement de ses valeurs d'arguments.

Exemple

// cliext_hash_multiset_value_compare.cpp 
// compile with: /clr 
#include <cliext/hash_set> 
 
typedef cliext::hash_multiset<wchar_t> Myhash_multiset; 
int main() 
    { 
    Myhash_multiset c1; 
    Myhash_multiset::value_compare^ kcomp = c1.value_comp(); 
 
    System::Console::WriteLine("compare(L'a', L'a') = {0}", 
        kcomp(L'a', L'a')); 
    System::Console::WriteLine("compare(L'a', L'b') = {0}", 
        kcomp(L'a', L'b')); 
    System::Console::WriteLine("compare(L'b', L'a') = {0}", 
        kcomp(L'b', L'a')); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

Configuration requise

En-tête : <cliext/hash_set>

Espace de nom : cliext

Voir aussi

Référence

hash_multiset (STL/CLR)

hash_multiset : : key_compare (STL/CLR)

hash_multiset : : value_comp (STL/CLR)

hash_multiset : : value_type (STL/CLR)