ReactOS 0.4.15-dev-7924-g5949c20
KeyCmp 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
 
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 311 of file map_test.cpp.

Member Function Documentation

◆ operator()() [1/6]

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

Definition at line 319 of file map_test.cpp.

320 { return lhs < rhs.m_data; }
int m_data
Definition: map_test.cpp:308

◆ operator()() [2/6]

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

Definition at line 376 of file set_test.cpp.

377 { return lhs < rhs.m_data; }

◆ operator()() [3/6]

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

Definition at line 316 of file map_test.cpp.

317 { return lhs.m_data < rhs; }

◆ operator()() [4/6]

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

Definition at line 373 of file set_test.cpp.

374 { return lhs.m_data < rhs; }

◆ operator()() [5/6]

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

Definition at line 313 of file map_test.cpp.

314 { return lhs.m_data < rhs.m_data; }

◆ operator()() [6/6]

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

Definition at line 370 of file set_test.cpp.

371 { return lhs.m_data < rhs.m_data; }

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