ReactOS 0.4.15-dev-7842-g558ab78
KeyEqual Struct Reference

Public Member Functions

bool operator() (Key lhs, Key rhs) const
 
bool operator() (Key lhs, int rhs) const
 
bool operator() (int lhs, Key rhs) const
 

Detailed Description

Definition at line 535 of file unordered_test.cpp.

Member Function Documentation

◆ operator()() [1/3]

bool KeyEqual::operator() ( int  lhs,
Key  rhs 
) const
inline

Definition at line 543 of file unordered_test.cpp.

544 { return lhs == rhs.m_data; }
int m_data
Definition: map_test.cpp:308

◆ operator()() [2/3]

bool KeyEqual::operator() ( Key  lhs,
int  rhs 
) const
inline

Definition at line 540 of file unordered_test.cpp.

541 { return lhs.m_data == rhs; }

◆ operator()() [3/3]

bool KeyEqual::operator() ( Key  lhs,
Key  rhs 
) const
inline

Definition at line 537 of file unordered_test.cpp.

538 { return lhs.m_data == rhs.m_data; }

The documentation for this struct was generated from the following file: