unordered_multimap::key_eq

 

Gets the stored comparison function object.

Syntax

Pred key_eq() const;

Remarks

The member function returns the stored comparison function object.

Example

 

// std_tr1__unordered_map__unordered_multimap_key_eq.cpp 
// compile with: /EHsc 
#include <unordered_map> 
#include <iostream> 

typedef std::unordered_multimap<char, int> Mymap; 
int main() 
    { 
    Mymap c1; 

    Mymap::key_equal cmpfn = c1.key_eq(); 
    std::cout << "cmpfn('a', 'a') == " 
        << std::boolalpha << cmpfn('a', 'a') << std::endl; 
    std::cout << "cmpfn('a', 'b') == " 
        << std::boolalpha << cmpfn('a', 'b') << std::endl; 

    return (0); 
    } 
cmpfn('a', 'a') == true
cmpfn('a', 'b') == false

Requirements

Header: <unordered_map>

Namespace: std

See Also

<unordered_map>
unordered_multimap Class