ReactOS 0.4.15-dev-7924-g5949c20
KeyEqualPtr Struct Reference

Public Member Functions

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

Detailed Description

Definition at line 556 of file unordered_test.cpp.

Member Function Documentation

◆ operator()() [1/3]

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

Definition at line 564 of file unordered_test.cpp.

565 { return lhs == rhs->m_data; }

◆ operator()() [2/3]

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

Definition at line 561 of file unordered_test.cpp.

562 { return lhs->m_data == rhs; }

◆ operator()() [3/3]

bool KeyEqualPtr::operator() ( Key const volatile lhs,
Key const volatile rhs 
) const
inline

Definition at line 558 of file unordered_test.cpp.

559 { return lhs->m_data == rhs->m_data; }

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